OLD | NEW |
1 // This file is part of help.eyeo.com. | 1 // This file is part of help.eyeo.com. |
2 // Copyright (C) 2017 Eyeo GmbH | 2 // Copyright (C) 2017 Eyeo GmbH |
3 // | 3 // |
4 // help.eyeo.com is free software: you can redistribute it and/or modify | 4 // help.eyeo.com 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 // help.eyeo.com is distributed in the hope that it will be useful, | 9 // help.eyeo.com 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 |
(...skipping 12 matching lines...) Expand all Loading... |
23 { | 23 { |
24 font-size: $font-size-h2; | 24 font-size: $font-size-h2; |
25 } | 25 } |
26 | 26 |
27 @media (min-width: $tablet-breakpoint) | 27 @media (min-width: $tablet-breakpoint) |
28 { | 28 { |
29 font-size: $font-size-h1; | 29 font-size: $font-size-h1; |
30 } | 30 } |
31 } | 31 } |
32 | 32 |
| 33 .h2 |
| 34 { |
| 35 font-size: $font-size-h2; |
| 36 } |
| 37 |
33 .h4 | 38 .h4 |
34 { | 39 { |
35 font-size: $font-size-h4; | 40 font-size: $font-size-h4; |
36 font-weight: $bold-weight; | 41 font-weight: $bold-weight; |
37 text-transform: uppercase; | 42 text-transform: uppercase; |
38 } | 43 } |
39 | 44 |
40 .heading-icon | 45 .heading-icon |
41 { | 46 { |
42 height: 0.9em; | 47 height: 0.9em; |
43 margin-right: 0.3em; | 48 margin-right: 0.3em; |
44 } | 49 } |
45 | 50 |
46 [dir="rtl"] .heading-icon | 51 [dir="rtl"] .heading-icon |
47 { | 52 { |
48 margin-right: 0; | 53 margin-right: 0; |
49 margin-left: 0.3em; | 54 margin-left: 0.3em; |
50 } | 55 } |
51 | 56 |
52 .product-heading | 57 .product-heading |
53 { | 58 { |
54 @extend .h1; | 59 @extend .h1; |
55 @extend .section; | 60 @extend .section; |
56 @extend .ta-center; | 61 @extend .ta-center; |
57 } | 62 } |
OLD | NEW |