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-h3; |
| 36 |
| 37 @media (min-width: $phablet-breakpoint) |
| 38 { |
| 39 font-size: $font-size-h2; |
| 40 } |
| 41 } |
| 42 |
33 .h4 | 43 .h4 |
34 { | 44 { |
35 font-size: $font-size-h4; | 45 font-size: $font-size-h4; |
36 font-weight: $bold-weight; | 46 font-weight: $bold-weight; |
37 text-transform: uppercase; | 47 text-transform: uppercase; |
38 } | 48 } |
39 | 49 |
40 .heading-icon | 50 .heading-icon |
41 { | 51 { |
42 height: 0.9em; | 52 height: 0.9em; |
43 margin-right: 0.3em; | 53 margin-right: 0.3em; |
44 } | 54 } |
45 | 55 |
46 [dir="rtl"] .heading-icon | 56 [dir="rtl"] .heading-icon |
47 { | 57 { |
48 margin-right: 0; | 58 margin-right: 0; |
49 margin-left: 0.3em; | 59 margin-left: 0.3em; |
50 } | 60 } |
51 | 61 |
52 .product-heading | 62 .product-heading |
53 { | 63 { |
54 @extend .h1; | 64 @extend .h1; |
55 @extend .section; | 65 @extend .section; |
56 @extend .ta-center; | 66 @extend .ta-center; |
57 } | 67 } |
| 68 |
| 69 .article-heading |
| 70 { |
| 71 @extend .h2; |
| 72 } |
OLD | NEW |