git ssb

2+

ev / mvd



Tree: 653e48dd0083bbc962d029960824b4212f96840f

Files: 653e48dd0083bbc962d029960824b4212f96840f / style.css

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

Built with git-ssb-web