Commit 624b42ac5c5cc0a87f4f12db4cbfb002a721febb
style adjustments
Ev Bogue committed on 7/5/2016, 3:39:07 PMParent: 17d7db1adce12ca09b59b024c412f519504a1c6d
Files changed
static/styles.css | changed |
static/styles.css | ||
---|---|---|
@@ -1,15 +1,19 @@ | ||
1 | 1 … | body { |
2 | 2 … | margin: 1ex 1em; |
3 | 3 … | line-height: 1.6; |
4 | - background-color: #eee; | |
5 | - font-family: sans-serif; | |
4 … | + background-color: #f5f5f5; | |
5 … | + font-family: "Source Sans Pro", sans-serif; | |
6 | 6 … | } |
7 | 7 … | |
8 … | +@media (min-width: 800px) { | |
9 … | + header, article { | |
10 … | + width: 100%; | |
11 … | + } | |
12 … | +} | |
13 … | + | |
8 | 14 … | header, article { |
9 | - width: 45em; | |
10 | - max-width: 100%; | |
11 | - min-width: 16em; | |
15 … | + width: 80%; | |
12 | 16 … | margin: 0 auto; |
13 | 17 … | } |
14 | 18 … | |
15 | 19 … | pre { |
@@ -75,11 +79,10 @@ | ||
75 | 79 … | section { |
76 | 80 … | background-color: white; |
77 | 81 … | padding: 1ex 1ex; |
78 | 82 … | margin-bottom: 1ex; |
79 | - border-radius: .5ex; | |
80 | - border: 1px #ccc; | |
81 | - border-style: none solid solid none; | |
83 … | + border-radius: 0; | |
84 … | + border: 1px solid #f5f5f5; | |
82 | 85 … | } |
83 | 86 … | |
84 | 87 … | section.collapse { |
85 | 88 … | margin-bottom: 0; |
@@ -93,13 +96,13 @@ | ||
93 | 96 … | margin-top: 1em; |
94 | 97 … | } |
95 | 98 … | |
96 | 99 … | a:link, a:visited { |
97 | - color: #006eff; | |
100 … | + color: #666; | |
98 | 101 … | text-decoration: none; |
99 | 102 … | } |
100 | 103 … | a:hover { |
101 | - color: #1f8fff; | |
104 … | + color: #333; | |
102 | 105 … | } |
103 | 106 … | |
104 | 107 … | hr { |
105 | 108 … | border: 0; |
@@ -144,20 +147,31 @@ | ||
144 | 147 … | margin-top: .25em; |
145 | 148 … | } |
146 | 149 … | |
147 | 150 … | .btn { |
151 … | + background: #eee; | |
152 … | + background: #eee linear-gradient(#eee, #ccc); | |
153 … | + border: 1px solid #aaa; | |
154 … | + border-top: 1px solid #ccc; | |
155 … | + border-left: 1px solid #ccc; | |
156 … | +// border-radius: 5px; | |
157 … | + color: #444; | |
158 … | + display: inline-block; | |
148 | 159 … | font-size: 1em; |
149 | - border-radius: .5ex; | |
150 | - | |
151 | - background-color: white; | |
152 | - border: 1px #ccc; | |
153 | - border-style: none solid solid none; | |
154 | - border-radius: .5ex; | |
160 … | + font-weight: bold; | |
161 … | + text-decoration: none; | |
162 … | + text-shadow: 0 1px #eee; | |
155 | 163 … | cursor: pointer; |
156 | - color: black; | |
164 … | + padding: .2em .5em; | |
157 | 165 … | } |
166 … | + | |
158 | 167 … | .btn:hover { |
159 | - background-color: #f6f6f6; | |
168 … | + background: #ddd; | |
169 … | + background: #ddd linear-gradient(#ddd, #aaa); | |
170 … | + border: 1px solid #888; | |
171 … | + border-top: 1px solid #aaa; | |
172 … | + border-left: 1px solid #aaa; | |
173 … | + color: #222; | |
160 | 174 … | } |
161 | 175 … | |
162 | 176 … | .name { |
163 | 177 … | font-size: inherit; |
@@ -216,9 +230,9 @@ | ||
216 | 230 … | display: inline-block; |
217 | 231 … | margin-right: .5ex; |
218 | 232 … | } |
219 | 233 … | nav a:hover { |
220 | - color: #1a86ff; | |
234 … | + color: #333; | |
221 | 235 … | } |
222 | 236 … | |
223 | 237 … | nav a.active { |
224 | 238 … | text-decoration: underline; |
@@ -243,19 +257,18 @@ | ||
243 | 257 … | |
244 | 258 … | .user-id { |
245 | 259 … | float: right; |
246 | 260 … | font-weight: normal; |
261 … | + font-size: small; | |
247 | 262 … | display: inline-block; |
248 | 263 … | margin: 0; |
249 | 264 … | } |
250 | 265 … | |
251 | 266 … | h2 .user-id { |
252 | - font-size: 16px; | |
253 | 267 … | padding-top: .5em; |
254 | 268 … | } |
255 | 269 … | |
256 | 270 … | h3 .user-id { |
257 | - font-size: 15px; | |
258 | 271 … | padding-top: .25em; |
259 | 272 … | } |
260 | 273 … | |
261 | 274 … | /* new issue form */ |
Built with git-ssb-web