| OLD | NEW |
| 1 // This file is part of website-defaults | 1 // This file is part of website-defaults |
| 2 // Copyright (C) 2016-present eyeo GmbH | 2 // Copyright (C) 2016-present eyeo GmbH |
| 3 // | 3 // |
| 4 // website-defaults is free software: you can redistribute it and/or | 4 // website-defaults is free software: you can redistribute it and/or |
| 5 // modify it under the terms of the GNU General Public License as published by | 5 // modify 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 // website-defaults is distributed in the hope that it will be useful, | 9 // website-defaults 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 website-defaults. If not, see <http://www.gnu.org/licenses/>. | 15 // along with website-defaults. If not, see <http://www.gnu.org/licenses/>. |
| 16 | 16 |
| 17 /******************************************************************************* | 17 /******************************************************************************* |
| 18 * Grid component | 18 * Grid component |
| 19 ******************************************************************************/ | 19 ******************************************************************************/ |
| 20 | 20 |
| 21 $half-breakpoint: $tablet-breakpoint !default; | |
| 22 $third-breakpoint: $desktop-breakpoint !default; | |
| 23 $fourth-breakpoint: $desktop-breakpoint !default; | |
| 24 | |
| 25 /** | 21 /** |
| 26 * - .row contains one or more .column(s) | 22 * - .row contains one or more .column(s) |
| 27 * - .row clears .column(s) | 23 * - .row clears .column(s) |
| 28 * - .row negates the left & right padding of it's left-most & right-most | 24 * - .row negates the left & right padding of it's left-most & right-most |
| 29 * .column(s) while preserving consistent padding between .column(s) | 25 * .column(s) while preserving consistent padding between .column(s) |
| 30 */ | 26 */ |
| 31 .row | 27 .row |
| 32 { | 28 { |
| 33 margin: 0px (-$small-space); | 29 margin: 0px (-$small-space); |
| 34 } | 30 } |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 .one-fourth | 92 .one-fourth |
| 97 { | 93 { |
| 98 width: 25%; | 94 width: 25%; |
| 99 } | 95 } |
| 100 | 96 |
| 101 .three-fourths | 97 .three-fourths |
| 102 { | 98 { |
| 103 width: 75%; | 99 width: 75%; |
| 104 } | 100 } |
| 105 } | 101 } |
| OLD | NEW |