Files: 60951b4ba455a5ad31e0ff33b6380ff31451c51f / src / simplicitease.css
3323 bytesRaw
1 | @font-face { |
2 | |
3 | font-family: "Open Sans"; |
4 | src: url("/fonts/opensans-light-webfont.ttf"); |
5 | font-weight: 300; |
6 | } |
7 | |
8 | @font-face { |
9 | font-family: "Open Sans"; |
10 | src: url("/fonts/opensans-italic-webfont.ttf"); |
11 | font-weight: 400; |
12 | } |
13 | |
14 | @font-face { |
15 | font-family: "Open Sans"; |
16 | src: url("/fonts/opensans-regular-webfont.ttf"); |
17 | font-weight: 400; |
18 | } |
19 | |
20 | @font-face { |
21 | font-family: "Open Sans"; |
22 | src: url("/fonts/opensans-bold-webfont.ttf"); |
23 | font-weight: 600; |
24 | } |
25 | |
26 | body { |
27 | color: #000; |
28 | font-weight: 400; |
29 | font-family: 'Open Sans', arial, sans-serif; |
30 | text-decoration: none; |
31 | margin-top: none; |
32 | display: block; |
33 | } |
34 | |
35 | img.profile { |
36 | border: 1px solid #ccc; |
37 | padding: 4px; |
38 | margin-right: 2em; |
39 | } |
40 | |
41 | img { |
42 | max-width: 100%; |
43 | } |
44 | |
45 | a:link { |
46 | font-weight: 300; |
47 | font-family: 'Open Sans', arial, sans-serif; |
48 | text-decoration: underline; |
49 | color: #4183C4; |
50 | text-decoration: none; |
51 | } |
52 | |
53 | a:hover { |
54 | color: #4183C4; |
55 | text-decoration: underline; |
56 | } |
57 | |
58 | a:hover { |
59 | |
60 | text-decoration: underline; |
61 | |
62 | } |
63 | |
64 | p { |
65 | color: #000; |
66 | font-family: 'Open Sans', arial, sans-serif; |
67 | font-weight: 400; |
68 | text-decoration: none; |
69 | } |
70 | |
71 | p.lead { |
72 | font-family: 'Open Sans', arial, sans-serif; |
73 | margin-bottom: 20px; |
74 | font-size: 20px; |
75 | font-weight: 300; |
76 | } |
77 | |
78 | p.micro { |
79 | font-family: 'Open Sans', arial, sans-serif; |
80 | font-size: .8em; |
81 | font-weight: 300; |
82 | } |
83 | |
84 | h1 { |
85 | font-family: 'Open Sans', arial, sans-serif; |
86 | color: #333; |
87 | font-size: 2em; |
88 | font-weight: 600; |
89 | } |
90 | |
91 | h2 { |
92 | font-family: 'Open Sans', arial, sans-serif; |
93 | font-size: 2em; |
94 | font-weight: 400; |
95 | color: #333; |
96 | } |
97 | |
98 | |
99 | h3, h4, h5, h6 { |
100 | font-family: 'Open Sans', arial, sans-serif; |
101 | font-size: 1em; |
102 | font-weight: 300; |
103 | color: #333; |
104 | } |
105 | |
106 | blockquote { |
107 | font-family: 'Open Sans', arial, sans-serif; |
108 | border-left: 2px solid #333; |
109 | } |
110 | |
111 | ul { |
112 | font-family: 'Open Sans', arial, sans-serif; |
113 | padding: 0; |
114 | } |
115 | |
116 | ul li { |
117 | font-family: 'Open Sans', arial, sans-serif; |
118 | list-style-type: square; |
119 | border-bottom: none; |
120 | } |
121 | |
122 | mark { |
123 | font: #111; |
124 | background: #ffd700; |
125 | font-size: 1em; |
126 | } |
127 | |
128 | button { |
129 | font-size: 1.2em; |
130 | float: left; |
131 | padding: 1em; |
132 | margin-right: .5em; |
133 | color: #000; |
134 | background: #000; |
135 | color: #FFF; |
136 | transition: all 0.5s; |
137 | } |
138 | |
139 | button:hover, button:active { |
140 | cursor: pointer; |
141 | text-decoration: none; |
142 | color: #000; |
143 | border-color: #49ab81; |
144 | background: #FFF; |
145 | } |
146 | |
147 | pre { |
148 | padding: .5em; |
149 | padding-left: .7em; |
150 | background: #3f3f3f; |
151 | color: #dcdcdc; |
152 | border-radius: 5px; |
153 | margin-bottom: .5em; |
154 | white-space: pre-wrap; |
155 | word-wrap: break-word; |
156 | } |
157 | |
158 | hr { |
159 | border: solid #eee; |
160 | clear: both; |
161 | border-width: 1px 0 0; |
162 | height: 0; |
163 | margin-bottom: .9em; |
164 | } |
165 | |
166 | input { |
167 | width: 100%; |
168 | } |
169 | |
170 | .article { |
171 | padding-right: 1em; |
172 | |
173 | } |
174 | |
175 | /* navbar */ |
176 | .navbar li { |
177 | margin: 0; |
178 | padding: 0; |
179 | font-size: 1em; |
180 | font-weight: underline; |
181 | } |
182 | |
183 | .navbar li { |
184 | text-transform: none; |
185 | float: left; |
186 | padding-left: 1em; |
187 | padding-right: 2em; |
188 | margin-left: 0; |
189 | list-style-type: none; |
190 | } |
191 | |
192 | .navbar a:link { |
193 | text-decoration: none; |
194 | } |
195 | |
196 | .navbar ul { |
197 | border: none; |
198 | } |
199 | |
200 | mark { |
201 | color: #002b36; |
202 | background: #ffdb00; |
203 | } |
204 | |
205 | .message { |
206 | border: 1px solid #ccc; |
207 | padding: 1em; |
208 | } |
209 | |
210 | .pre { |
211 | margin-bottom: 0; |
212 | } |
213 | |
214 | .date { |
215 | font-size: .8em; |
216 | color: #666; |
217 | } |
218 | |
219 | .small { |
220 | font-size: .8em; |
221 | } |
222 | |
223 | .ri { |
224 | float: right; |
225 | } |
226 | |
227 |
Built with git-ssb-web