Showing
1 changed file
with
34 additions
and
29 deletions
| ... | ... | @@ -52,7 +52,7 @@ hr { |
| 52 | 52 | } |
| 53 | 53 | p { |
| 54 | 54 | padding-top: 5px; |
| 55 | - text-indent: 10px; | |
| 55 | + text-indent: 0.5em; | |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | #header { |
| ... | ... | @@ -60,8 +60,8 @@ p { |
| 60 | 60 | |
| 61 | 61 | position: fixed; |
| 62 | 62 | width: 100%; |
| 63 | - height: 80px; | |
| 64 | - margin-top: 30px; | |
| 63 | + height: 5em; | |
| 64 | + margin-top: 1.875em; | |
| 65 | 65 | |
| 66 | 66 | z-index: 10; |
| 67 | 67 | } |
| ... | ... | @@ -71,26 +71,31 @@ p { |
| 71 | 71 | left: 85%; |
| 72 | 72 | transform: translate(-50%, -50%); |
| 73 | 73 | |
| 74 | - width: 430px; | |
| 74 | + width: 26.875em; | |
| 75 | + clear: both; | |
| 75 | 76 | } |
| 76 | -#logo img,#logo a { | |
| 77 | - position: absolute; | |
| 78 | - left: 30px; | |
| 77 | +#logo { | |
| 78 | + height: 100%; | |
| 79 | + width: 100%; | |
| 80 | +} | |
| 81 | +#logo img, | |
| 82 | +#logo a { | |
| 83 | + position: relative; | |
| 79 | 84 | top: 50%; |
| 80 | 85 | transform: translate(0, -50%); |
| 86 | + float: left; | |
| 81 | 87 | } |
| 82 | 88 | #logo img { |
| 83 | - border: 2px solid white; | |
| 84 | - border-radius: 10px; | |
| 89 | + border: 0.125em solid white; | |
| 90 | + border-radius: 0.625em; | |
| 85 | 91 | padding: 2px; |
| 86 | 92 | opacity: 0.4; |
| 93 | + margin: 0 1em; | |
| 87 | 94 | } |
| 88 | 95 | #logo a { |
| 89 | 96 | color: rgb(255,255,255); |
| 90 | - left: 120px; | |
| 91 | - | |
| 92 | 97 | text-decoration: none; |
| 93 | - font-size: 30px; | |
| 98 | + font-size: 1.875em; | |
| 94 | 99 | font-family: Arkitech; |
| 95 | 100 | } |
| 96 | 101 | |
| ... | ... | @@ -104,7 +109,7 @@ p { |
| 104 | 109 | } |
| 105 | 110 | #nav li a { |
| 106 | 111 | color: rgba(255,255,255,0.4); |
| 107 | - font-size: 16px; | |
| 112 | + font-size: 1em; | |
| 108 | 113 | text-decoration: none; |
| 109 | 114 | font-weight: bold; |
| 110 | 115 | outline: 0; |
| ... | ... | @@ -115,7 +120,7 @@ p { |
| 115 | 120 | } |
| 116 | 121 | #nav li a.active { |
| 117 | 122 | color: rgba(255,255,255,1); |
| 118 | - border-bottom: 2px solid rgb(255,255,255); | |
| 123 | + border-bottom: 0.125em solid rgb(255,255,255); | |
| 119 | 124 | } |
| 120 | 125 | |
| 121 | 126 | #section1 .content, #section3 .content, #section5 .content { |
| ... | ... | @@ -147,7 +152,7 @@ p { |
| 147 | 152 | background: rgb(22, 27, 28); |
| 148 | 153 | position: relative; |
| 149 | 154 | width: 100%; |
| 150 | - height: 140px; | |
| 155 | + height: 8.75em; | |
| 151 | 156 | font-size: x-small; |
| 152 | 157 | } |
| 153 | 158 | #footer p { |
| ... | ... | @@ -160,10 +165,10 @@ p { |
| 160 | 165 | float: left; |
| 161 | 166 | padding-left: 10px; |
| 162 | 167 | padding-right: 10px; |
| 163 | - border-right: 1px solid rgb(214,206,204); | |
| 168 | + border-right: 0.0625em solid rgb(214,206,204); | |
| 164 | 169 | } |
| 165 | 170 | #footer .license { |
| 166 | - bottom: 0px; | |
| 171 | + bottom: 0; | |
| 167 | 172 | width: 100%; |
| 168 | 173 | position: absolute; |
| 169 | 174 | } |
| ... | ... | @@ -176,7 +181,7 @@ p { |
| 176 | 181 | #footer .license div { |
| 177 | 182 | display: inline-block; |
| 178 | 183 | position: relative; |
| 179 | - left: 0px; | |
| 184 | + left: 0; | |
| 180 | 185 | vertical-align: middle; |
| 181 | 186 | } |
| 182 | 187 | |
| ... | ... | @@ -199,9 +204,9 @@ p { |
| 199 | 204 | text-align: justify; |
| 200 | 205 | padding: 10px; |
| 201 | 206 | width: 30%; |
| 202 | - height: 160px; | |
| 207 | + height: 10em; | |
| 203 | 208 | overflow: hidden; |
| 204 | - box-shadow: 10px 10px 10px rgba(0,0,0,0.7); | |
| 209 | + box-shadow: 0.625em 0.625em 0.625em rgba(0,0,0,0.7); | |
| 205 | 210 | } |
| 206 | 211 | #about a { |
| 207 | 212 | outline: 0; |
| ... | ... | @@ -269,8 +274,8 @@ p { |
| 269 | 274 | |
| 270 | 275 | .quote-container { |
| 271 | 276 | position: relative; |
| 272 | - width: 500px; | |
| 273 | - top: 10px; | |
| 277 | + width: 31.25em; | |
| 278 | + top: 0.625em; | |
| 274 | 279 | left: 50%; |
| 275 | 280 | transform: translate(-50%, 0); |
| 276 | 281 | } |
| ... | ... | @@ -337,14 +342,14 @@ p { |
| 337 | 342 | .textbox { |
| 338 | 343 | text-align: center; |
| 339 | 344 | border-style: solid; |
| 340 | - border-radius: 10px; | |
| 341 | - border-width: 3px; | |
| 345 | + border-radius: 0.625em; | |
| 346 | + border-width: 0.1875em; | |
| 342 | 347 | } |
| 343 | 348 | |
| 344 | 349 | .separator { |
| 345 | 350 | position: relative; |
| 346 | - border-bottom: 1px dotted black; | |
| 347 | - height: 0px; | |
| 351 | + border-bottom: 0.0625em dotted black; | |
| 352 | + height: 0; | |
| 348 | 353 | width: 20%; |
| 349 | 354 | left: 50%; |
| 350 | 355 | transform: translate(-50%, 0); |
| ... | ... | @@ -381,13 +386,13 @@ p { |
| 381 | 386 | } |
| 382 | 387 | .dictionary ol li q { |
| 383 | 388 | display: block; |
| 384 | - text-indent: 10px; | |
| 389 | + text-indent: 0.625em; | |
| 385 | 390 | font-family: serif; |
| 386 | 391 | font-size: small; |
| 387 | 392 | } |
| 388 | 393 | .dictionary ol li i { |
| 389 | 394 | display: block; |
| 390 | - right: 10px; | |
| 395 | + right: 0.625em; | |
| 391 | 396 | font-size: x-small; |
| 392 | 397 | position: absolute; |
| 393 | 398 | } |
| ... | ... | @@ -417,7 +422,7 @@ p { |
| 417 | 422 | .source { |
| 418 | 423 | position: absolute; |
| 419 | 424 | font-size: x-small; |
| 420 | - bottom: 35px; | |
| 425 | + bottom: 3.5em; | |
| 421 | 426 | width: 30%; |
| 422 | 427 | } |
| 423 | 428 | /* | ... | ... |
Please
register
or
login
to post a comment