| LEFT | RIGHT |
| (no file at all) | |
| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 height: 48px; | 61 height: 48px; |
| 62 } | 62 } |
| 63 | 63 |
| 64 .card img.block | 64 .card img.block |
| 65 { | 65 { |
| 66 margin: 0; | 66 margin: 0; |
| 67 } | 67 } |
| 68 | 68 |
| 69 .card-summary { | 69 .card-summary { |
| 70 margin: $md 0; | 70 margin: $md 0; |
| 71 height: $lg; | 71 height: $xl; |
| 72 | 72 |
| 73 @media (max-width: $mobile-breakpoint) | 73 @media (max-width: $mobile-breakpoint) |
| 74 { | 74 { |
| 75 margin: $sm; | 75 margin: $sm; |
| 76 height: auto; | 76 height: auto; |
| 77 } | 77 } |
| 78 } | 78 } |
| 79 | 79 |
| 80 // negative margin shrinks containing paragraph margin | 80 // negative margin shrinks containing paragraph margin |
| 81 .card %buttons | 81 .card %buttons |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 .card.list a | 149 .card.list a |
| 150 { | 150 { |
| 151 text-decoration: none; | 151 text-decoration: none; |
| 152 color: $primary-fg; | 152 color: $primary-fg; |
| 153 } | 153 } |
| 154 | 154 |
| 155 .card.list a%active | 155 .card.list a%active |
| 156 { | 156 { |
| 157 color: $accent; | 157 color: $accent; |
| 158 } | 158 } |
| LEFT | RIGHT |