git ssb

2+

ev / mvd



Tree: f23a13c74bf56135e09fed883c61a7fdf6327a42

Files: f23a13c74bf56135e09fed883c61a7fdf6327a42 / style.css

3638 bytesRaw
1body {
2 margin: 0;
3 background: #141414;
4 font-family: sans-serif;
5 color: #d5d5d5;
6 font-size: 14px;
7 line-height: 20px;
8}
9
10#screen {
11 position: absolute;
12 top: 35px;
13 bottom: 0px;
14 left: 0px;
15 right: 0px;
16}
17
18.hyperscroll {
19 width: 100%;
20}
21
22.header {
23 padding-bottom: .7em;
24 border-bottom: 1px solid #252525;
25}
26
27h1, h2, h3, h4, h5, h6 {
28 font-size: 1.2em;
29 margin-top: .35ex;
30}
31
32hr {
33 border: solid #222;
34 clear: both;
35 border-width: 1px 0 0;
36 height: 0;
37 margin-bottom: .9em;
38}
39
40
41p {
42 margin-top: .35ex;
43 margin-bottom: 10px;
44}
45
46
47a {
48 color: white;
49 *text-decoration: none;
50}
51
52a:hover {
53 color: #ddd;
54}
55
56.navbar a {
57 color: #999;
58 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
59 text-decoration: none;
60}
61
62.navbar a:hover, .navbar a:focus {
63 color: #fff;
64 text-decoration: none;
65}
66
67.navbar {
68 background: #1b1b1b;
69 background: linear-gradient(#222, #111);
70 border-bottom: 1px solid #252525;
71}
72
73.navbar {
74 width: 100%;
75 position: fixed;
76 z-index: 1000;
77 margin: 0;
78 padding-top: .3em;
79 padding-bottom: .3em;
80 left: 0; right: 0;
81 top: 0;
82}
83
84.navbar .internal {
85 max-width: 680px;
86 margin-left: auto;
87 margin-right: auto;
88}
89
90.navbar li {
91 margin-top: .3em;
92 float: left;
93 margin-right: .6em;
94 margin-left: .3em;
95 list-style-type: none;
96}
97
98.navbar li.right {
99 padding-left: .4em;
100 padding-right: .4em;
101 margin-top: .3em;
102 margin-right: 1.7em;
103 float: right;
104 list-style-type: none;
105 background: #333;
106 border-radius: 100%;
107}
108
109.content {
110 max-width: 680px;
111 margin-left: auto;
112 margin-right: auto;
113}
114
115.hyperscroll > .content {
116 max-width: 680px;
117 margin-left: auto;
118 margin-right: auto;
119}
120
121.message, .message > *, .navbar, .navbar > * {
122 animation: fadein .5s;
123}
124
125@keyframes fadein {
126 from { opacity: 0; }
127 to { opacity: 1; }
128}
129
130.message, .embedded {
131 display: block;
132 margin: .6em;
133 background: #111;
134 padding: .7em;
135 border-radius: 3px;
136 border: 1px solid #252525;
137}
138
139.embedded {
140 padding-left: 1em;
141}
142
143.message:hover, .embedded:hover {
144 background: #141414;
145}
146
147.message img, .message video {
148 max-width: 100%;
149}
150
151.timestamp, .votes {
152 float: right;
153}
154
155.avatar--small img {
156 vertical-align: top;
157 width: 1.4em;
158 height: 1.4em;
159 margin-right: .2em;
160}
161
162.avatar--medium img {
163 vertical-align: top;
164 width: 5em;
165 height: 5em;
166 margin-right: .5em;
167 margin-bottom: .5em;
168}
169
170.compose, textarea, input {
171 font-family: sans-serif;
172 font-size: 14px;
173 line-height: 20px;
174 background: #111;
175 color: #ccc;
176 border: none;
177 border-radius: 3px;
178}
179
180textarea {
181 width: 100%;
182 height: 100px;
183}
184
185.compose:hover {
186 background: #141414;
187}
188
189.compose:focus {
190 outline: none;
191}
192
193.btn .emoji {
194 padding: .2em;
195}
196
197.right {
198 float: right;
199}
200
201.emoji {
202 *float: left;
203 width: 1em;
204 vertical-align: top;
205}
206
207pre {
208 width: 100%;
209 display: block;
210}
211
212code {
213 display: inline-block;
214 vertical-align: bottom;
215}
216
217code, pre {
218overflow: auto;
219word-break: break-all;
220word-wrap: break-word;
221white-space: pre;
222white-space: -moz-pre-wrap;
223white-space: pre-wrap;
224white-space: pre\9;
225}
226
227
228.btn {
229 display: inline-block;
230 *display: inline;
231 padding: 2px 6px;
232 margin-bottom: 0;
233 margin-right: .2em;
234 font-size: 14px;
235 line-height: 20px;
236 color: #d5d5d5;
237 text-align: center;
238 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
239 vertical-align: middle;
240 cursor: pointer;
241 background-color: #222;
242 border: 1px solid #222;
243 border-radius: 4px;
244}
245
246
247.btn:hover,
248.btn:focus,
249.btn:active,
250.btn.active,
251.btn.disabled,
252.btn[disabled] {
253 color: white;
254 background-color: black;
255}
256
257.btn:active,
258.btn.active {
259 background-color: #111;
260}
261
262.btn:first-child {
263 *margin-left: 0;
264}
265
266

Built with git-ssb-web