git ssb

2+

ev / mvd



Tree: 51c13efa0a9e4c1ad0ec9785e6337671148325a0

Files: 51c13efa0a9e4c1ad0ec9785e6337671148325a0 / style.css

3516 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.compose, textarea, input {
163 font-family: sans-serif;
164 font-size: 14px;
165 line-height: 20px;
166 background: #111;
167 color: #ccc;
168 border: none;
169 border-radius: 3px;
170}
171
172textarea {
173 width: 100%;
174 height: 100px;
175}
176
177.compose:hover {
178 background: #141414;
179}
180
181.compose:focus {
182 outline: none;
183}
184
185.btn .emoji {
186 padding: .2em;
187}
188
189.right {
190 float: right;
191}
192
193.emoji {
194 *float: left;
195 width: 1em;
196 vertical-align: top;
197}
198
199pre {
200 width: 100%;
201 display: block;
202}
203
204code {
205 display: inline-block;
206 vertical-align: bottom;
207}
208
209code, pre {
210overflow: auto;
211word-break: break-all;
212word-wrap: break-word;
213white-space: pre;
214white-space: -moz-pre-wrap;
215white-space: pre-wrap;
216white-space: pre\9;
217}
218
219
220.btn {
221 display: inline-block;
222 *display: inline;
223 padding: 2px 6px;
224 margin-bottom: 0;
225 margin-right: .2em;
226 font-size: 14px;
227 line-height: 20px;
228 color: #d5d5d5;
229 text-align: center;
230 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
231 vertical-align: middle;
232 cursor: pointer;
233 background-color: #222;
234 border: 1px solid #222;
235 border-radius: 4px;
236}
237
238
239.btn:hover,
240.btn:focus,
241.btn:active,
242.btn.active,
243.btn.disabled,
244.btn[disabled] {
245 color: white;
246 background-color: black;
247}
248
249.btn:active,
250.btn.active {
251 background-color: #111;
252}
253
254.btn:first-child {
255 *margin-left: 0;
256}
257
258

Built with git-ssb-web