OLD | NEW |
1 @font-face | 1 @font-face |
2 { | 2 { |
3 font-family: "Source Sans Pro"; | 3 font-family: "Source Sans Pro"; |
4 src: url(/fonts/SourceSansPro-Light.woff); | 4 src: url(/fonts/SourceSansPro-Light.woff); |
5 /* local("Ø") forces using no local font called Source Sans Pro */ | 5 /* local("Ø") forces using no local font called Source Sans Pro */ |
6 src: local("Ø"), url(/fonts/SourceSansPro-Light.woff) format("woff"); | 6 src: local("Ø"), url(/fonts/SourceSansPro-Light.woff) format("woff"); |
7 font-weight: 300; | 7 font-weight: 300; |
8 font-style: normal; | 8 font-style: normal; |
9 } | 9 } |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 src: local("Ø"), url(/fonts/SourceSansPro-Semibold.woff) format("woff"); | 26 src: local("Ø"), url(/fonts/SourceSansPro-Semibold.woff) format("woff"); |
27 font-weight: 600; | 27 font-weight: 600; |
28 font-style: normal; | 28 font-style: normal; |
29 } | 29 } |
30 | 30 |
31 body | 31 body |
32 { | 32 { |
33 margin: 0px; | 33 margin: 0px; |
34 font-family: "Source Sans Pro", sans-serif; | 34 font-family: "Source Sans Pro", sans-serif; |
35 font-weight: 600; | 35 font-weight: 600; |
36 background-image: url(/img/background-dark.png); | |
37 } | 36 } |
38 | 37 |
39 header | 38 header |
40 { | 39 { |
41 width: 100%; | 40 width: 100%; |
42 } | 41 } |
43 | 42 |
44 a, | 43 a, |
45 a:link, | 44 a:link, |
46 a:visited | 45 a:visited |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 color: #7d7d7d; | 78 color: #7d7d7d; |
80 text-align: center; | 79 text-align: center; |
81 } | 80 } |
82 | 81 |
83 header::before | 82 header::before |
84 { | 83 { |
85 content: ""; | 84 content: ""; |
86 display: block; | 85 display: block; |
87 border-bottom: solid 1px #d0d0d0; | 86 border-bottom: solid 1px #d0d0d0; |
88 height: 92px; | 87 height: 92px; |
89 background-image: url(/img/background.png); | |
90 } | 88 } |
91 | 89 |
92 #logo | 90 #logo |
93 { | 91 { |
94 display: block; | 92 display: block; |
95 position: absolute; | 93 position: absolute; |
96 top: 42px; | 94 top: 42px; |
97 left: 0px; | 95 left: 0px; |
98 right: 0px; | 96 right: 0px; |
99 margin: 0px auto; | 97 margin: 0px auto; |
(...skipping 14 matching lines...) Expand all Loading... |
114 } | 112 } |
115 | 113 |
116 .notification | 114 .notification |
117 { | 115 { |
118 margin: 0px; | 116 margin: 0px; |
119 text-align: center; | 117 text-align: center; |
120 } | 118 } |
121 | 119 |
122 section.highlighted | 120 section.highlighted |
123 { | 121 { |
124 background-image: url(/img/background-blue.png); | 122 background-color: #5982B0; |
125 color: #FFFFFF; | 123 color: #FFFFFF; |
126 } | 124 } |
127 | 125 |
128 section.highlighted a | 126 section.highlighted a |
129 { | 127 { |
130 color: #FFFFFF; | 128 color: #FFFFFF; |
131 } | 129 } |
132 | 130 |
133 section h1 | 131 section h1 |
134 { | 132 { |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 { | 248 { |
251 display: none; | 249 display: none; |
252 } | 250 } |
253 | 251 |
254 footer | 252 footer |
255 { | 253 { |
256 margin: 0 auto 30px; | 254 margin: 0 auto 30px; |
257 max-width: 960px; | 255 max-width: 960px; |
258 text-align: center; | 256 text-align: center; |
259 } | 257 } |
OLD | NEW |