Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
52 display: table; | 52 display: table; |
53 width: 100%; | 53 width: 100%; |
54 table-layout: fixed; | 54 table-layout: fixed; |
55 } | 55 } |
56 | 56 |
57 .group-container .group | 57 .group-container .group |
58 { | 58 { |
59 margin-bottom: 0; | 59 margin-bottom: 0; |
60 } | 60 } |
61 | 61 |
62 .group-container > %headings | 62 .group-container > %headings |
juliandoucette
2017/06/09 14:08:26
NIT: I don't like `margin-top: 0` here. It seems l
ire
2017/06/14 15:41:13
I'm not sure about this. The way I see it, all `.g
| |
63 { | 63 { |
64 margin-top: 0; | 64 margin-top: 0; |
65 | 65 |
66 @media (max-width: $desktop-breakpoint) | 66 @media (max-width: $desktop-breakpoint) |
67 { | 67 { |
68 margin: $md auto; | 68 margin: $md auto; |
69 } | 69 } |
70 } | 70 } |
71 | 71 |
72 .group .card, | 72 .group .card, |
(...skipping 11 matching lines...) Expand all Loading... | |
84 width: 45px; | 84 width: 45px; |
85 } | 85 } |
86 | 86 |
87 // fix 1px border ltr and rtrl on desktop | 87 // fix 1px border ltr and rtrl on desktop |
88 | 88 |
89 html[dir="ltr"] .group .card + .card | 89 html[dir="ltr"] .group .card + .card |
90 { | 90 { |
91 border-left: 0; | 91 border-left: 0; |
92 } | 92 } |
93 | 93 |
94 @media(max-width: $tablet-breakpoint) | |
95 { | |
96 html[dir="ltr"] .group .card:first-child | |
97 { | |
98 border-left: 0; | |
99 } | |
100 } | |
101 | |
94 html[dir="rtl"] .group .card + .card | 102 html[dir="rtl"] .group .card + .card |
95 { | 103 { |
96 border-right: 0; | 104 border-right: 0; |
105 } | |
106 | |
107 @media(max-width: $tablet-breakpoint) | |
108 { | |
109 html[dir="rtl"] .group .card:last-child | |
110 { | |
111 border-right: 0; | |
112 } | |
97 } | 113 } |
98 | 114 |
99 // start a little lower than cards to add extra spacing on top and sides | 115 // start a little lower than cards to add extra spacing on top and sides |
100 .group.items .item | 116 .group.items .item |
101 { | 117 { |
102 position: relative; | 118 position: relative; |
103 margin-bottom: $md; | 119 margin-bottom: $md; |
104 padding: 0 $sm; | 120 padding: 0 $sm; |
105 } | 121 } |
106 | 122 |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
279 width: 100%; | 295 width: 100%; |
280 } | 296 } |
281 // un-center all cards | 297 // un-center all cards |
282 .group > div:nth-child(4), | 298 .group > div:nth-child(4), |
283 .group > div:nth-child(3), | 299 .group > div:nth-child(3), |
284 .group > div:nth-child(5) | 300 .group > div:nth-child(5) |
285 { | 301 { |
286 margin-left: 0; | 302 margin-left: 0; |
287 } | 303 } |
288 } | 304 } |
LEFT | RIGHT |