OLD | NEW |
1 // This file is part of acceptableads.org. | 1 // This file is part of acceptableads.org. |
2 // Copyright (C) 2016 Eyeo GmbH | 2 // Copyright (C) 2016 Eyeo GmbH |
3 // | 3 // |
4 // acceptableads.org is free software: you can redistribute it and/or modify | 4 // acceptableads.org is free software: you can redistribute it and/or modify |
5 // it under the terms of the GNU General Public License as published by | 5 // it under the terms of the GNU General Public License as published by |
6 // the Free Software Foundation, either version 3 of the License, or | 6 // the Free Software Foundation, either version 3 of the License, or |
7 // (at your option) any later version. | 7 // (at your option) any later version. |
8 // | 8 // |
9 // acceptableads.org is distributed in the hope that it will be useful, | 9 // acceptableads.org is distributed in the hope that it will be useful, |
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 // GNU General Public License for more details. | 12 // GNU General Public License for more details. |
13 // | 13 // |
14 // You should have received a copy of the GNU General Public License | 14 // You should have received a copy of the GNU General Public License |
15 // along with acceptableads.org. If not, see <http://www.gnu.org/licenses/>. | 15 // along with acceptableads.org. If not, see <http://www.gnu.org/licenses/>. |
16 | 16 |
17 // Headings //////////////////////////////////////////////////////////////////// | 17 // Headings //////////////////////////////////////////////////////////////////// |
18 | 18 |
19 %headings | 19 %headings |
20 { | 20 { |
21 text-transform: uppercase; | 21 text-transform: uppercase; |
22 font-weight: 700; | 22 font-weight: 700; |
23 line-height: 120%; | |
24 } | 23 } |
25 | 24 |
26 h1, | 25 h1, |
27 .h1 | 26 .h1 |
28 { | 27 { |
29 margin: $xl 0 $lg 0; | 28 margin: $xl 0 $lg 0; |
30 text-transform: none; | 29 text-transform: none; |
31 font-size: $font-size-h1; | 30 font-size: $font-size-h1; |
32 font-weight: 300; | 31 font-weight: 300; |
33 } | 32 } |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 body | 76 body |
78 { | 77 { |
79 color: $primary-fg; | 78 color: $primary-fg; |
80 // @see https://www.smashingmagazine.com/2015/11/using-system-ui-fonts-practic
al-guide/ | 79 // @see https://www.smashingmagazine.com/2015/11/using-system-ui-fonts-practic
al-guide/ |
81 font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, | 80 font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, |
82 "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", | 81 "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", |
83 "Fira Sans", "Droid Sans", "Helvetica Neue", | 82 "Fira Sans", "Droid Sans", "Helvetica Neue", |
84 sans-serif; | 83 sans-serif; |
85 font-size: $font-size-lg; | 84 font-size: $font-size-lg; |
86 font-weight: 300; | 85 font-weight: 300; |
87 line-height: 120%; | 86 line-height: 1.5; |
88 } | 87 } |
89 | 88 |
90 small, | 89 small, |
91 .small | 90 .small |
92 { | 91 { |
93 margin-bottom: $xs; | 92 margin-bottom: $xs; |
94 font-size: 70%; | 93 font-size: 70%; |
95 line-height: 80%; | 94 line-height: 80%; |
96 } | 95 } |
97 | 96 |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 { | 414 { |
416 vertical-align: bottom; | 415 vertical-align: bottom; |
417 text-transform: uppercase; | 416 text-transform: uppercase; |
418 border-bottom: 2px solid $info; | 417 border-bottom: 2px solid $info; |
419 } | 418 } |
420 | 419 |
421 table tbody + tbody | 420 table tbody + tbody |
422 { | 421 { |
423 border-top: 2px solid $info; | 422 border-top: 2px solid $info; |
424 } | 423 } |
OLD | NEW |