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 |
(...skipping 18 matching lines...) Expand all Loading... |
29 @extend h3; | 29 @extend h3; |
30 height: $md + $sm; | 30 height: $md + $sm; |
31 margin: $sm 0 $sm 0; | 31 margin: $sm 0 $sm 0; |
32 | 32 |
33 @media (max-width: $mobile-breakpoint) | 33 @media (max-width: $mobile-breakpoint) |
34 { | 34 { |
35 height: auto; | 35 height: auto; |
36 } | 36 } |
37 } | 37 } |
38 | 38 |
| 39 .card article .card-heading |
| 40 { |
| 41 height: auto; |
| 42 |
| 43 @media (min-width: $tablet-breakpoint) |
| 44 { |
| 45 height: 120px; |
| 46 } |
| 47 } |
| 48 |
39 .card-icon | 49 .card-icon |
40 { | 50 { |
41 margin: $sm 0; | 51 margin: $sm 0; |
42 } | 52 } |
43 | 53 |
44 .center .card-icon | 54 .center .card-icon |
45 { | 55 { |
46 margin: $lg - $sm 0 $md 0; | 56 margin: $lg - $sm 0 $md 0; |
47 | 57 |
48 @media (max-width: $tablet-breakpoint) | 58 @media (max-width: $tablet-breakpoint) |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 .card.list a | 159 .card.list a |
150 { | 160 { |
151 text-decoration: none; | 161 text-decoration: none; |
152 color: $primary-fg; | 162 color: $primary-fg; |
153 } | 163 } |
154 | 164 |
155 .card.list a%active | 165 .card.list a%active |
156 { | 166 { |
157 color: $accent; | 167 color: $accent; |
158 } | 168 } |
OLD | NEW |