| 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 |
| 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 // GNU General Public License for more details. | 12 // GNU General Public License for more details. |
| 13 // | 13 // |
| 14 // You should have received a copy of the GNU General Public License | 14 // You should have received a copy of the GNU General Public License |
| 15 // along with acceptableads.org. If not, see <http://www.gnu.org/licenses/>. | 15 // along with acceptableads.org. If not, see <http://www.gnu.org/licenses/>. |
| 16 | 16 |
| 17 /* Floating box grid (with push/pull support) | 17 /* Floating box grid (with push/pull support) |
| 18 * NOTE: 1/4 is 1/2 on tablet | 18 * NOTE: 1/4 is 1/2 on tablet |
| 19 * NOTE: all are 1/1 on mobile | 19 * NOTE: all are 1/1 on mobile |
| 20 * NOTE: use column classes without a row to set block widths | 20 * NOTE: use column classes without a row to set block widths |
| 21 ******************************************************************************/ | 21 ******************************************************************************/ |
| 22 | 22 |
| 23 .outer | |
| 24 { | |
| 25 overflow: hidden; | |
| 26 } | |
| 27 | |
| 28 .container | 23 .container |
| 29 { | 24 { |
| 30 max-width: $max-width; | 25 max-width: $max-width; |
| 31 margin-right: auto; | 26 margin-right: auto; |
| 32 margin-left: auto; | 27 margin-left: auto; |
| 33 padding-right: $gutter-width; | 28 padding-right: $gutter-width; |
| 34 padding-left: $gutter-width; | 29 padding-left: $gutter-width; |
| 35 } | 30 } |
| 36 | 31 |
| 37 .row | 32 .row |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 | 231 |
| 237 html[dir="rtl"] .pull-8 { | 232 html[dir="rtl"] .pull-8 { |
| 238 left: 66.666667%; | 233 left: 66.666667%; |
| 239 } | 234 } |
| 240 | 235 |
| 241 html[dir="rtl"] .pull-9 { | 236 html[dir="rtl"] .pull-9 { |
| 242 left: 75%; | 237 left: 75%; |
| 243 } | 238 } |
| 244 | 239 |
| 245 } | 240 } |
| OLD | NEW |