OLD | NEW |
---|---|
(Empty) | |
1 a { | |
2 color: rgb(43, 43, 43); | |
3 } | |
4 | |
5 body { | |
6 background: rgb(247, 247, 247); | |
7 color: rgb(43, 43, 43); | |
8 line-height: 20pt; | |
9 } | |
10 | |
11 button { | |
12 background: rgb(76, 142, 250); | |
13 border: 0; | |
14 border-box: box-sizing; | |
edwardjung
2014/05/28 13:41:27
I know this is my fault, should be the other way r
felt
2014/06/02 17:58:46
Done.
| |
15 border-radius: 2px; | |
16 color: #fff; | |
17 float: right; | |
18 margin: -6px 0 0; | |
19 padding: 8px 24px; | |
20 } | |
21 | |
22 #details { | |
23 margin: 40px 0 150px 0; | |
24 } | |
25 | |
26 h1 { | |
27 -webkit-margin-after: 15px; | |
28 font-size: 22pt; | |
edwardjung
2014/05/28 13:41:27
For accessibility I would use relative font sizes
felt
2014/06/02 17:58:46
Switched to using em everywhere.
| |
29 font-weight: normal; | |
30 line-height: 28px; | |
31 } | |
32 | |
33 .hidden { | |
34 display: none; | |
35 } | |
36 | |
37 .icon { | |
38 background: url(images/lock_red.png) no-repeat; | |
39 background-size: 100%; | |
40 height: 69px; | |
41 margin: 0 0 40px; | |
42 width: 56px; | |
43 } | |
44 | |
45 .interstitial-wrapper { | |
46 box-sizing: border-box; | |
47 margin: 10% auto 0; | |
48 max-width: 582px; | |
49 width: 100%; | |
50 } | |
51 | |
52 .nav-wrapper { | |
53 margin-top: 60px; | |
54 } | |
55 | |
56 .nav-wrapper::after { | |
57 clear: both; | |
58 content: ''; | |
59 display: table; | |
60 width: 100%; | |
61 } | |
62 | |
63 p { | |
64 margin-bottom: 22px; | |
65 } | |
66 | |
67 @media (max-width: 700px) { | |
68 .interstitial-wrapper { | |
69 padding: 0 10%; | |
70 } | |
71 } | |
OLD | NEW |