| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 // This file is part of help.eyeo.com. | 1 // Variables & Website Defaults |
| 2 // Copyright (C) 2017-present eyeo GmbH | 2 //////////////////////////////////////////////////////////////////////////////// |
| 3 // | |
| 4 // help.eyeo.com is free software: you can redistribute it and/or modify | |
| 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 | |
| 7 // (at your option) any later version. | |
| 8 // | |
| 9 // help.eyeo.com is distributed in the hope that it will be useful, | |
| 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 12 // GNU General Public License for more details. | |
| 13 // | |
| 14 // You should have received a copy of the GNU General Public License | |
| 15 // along with help.eyeo.com. If not, see <http://www.gnu.org/licenses/>. | |
| 16 | |
| 17 // Base styles ///////////////////////////////////////////////////////////////// | |
| 18 | 3 |
| 19 @import "base/variables"; | 4 @import "base/variables"; |
|
ire
2017/11/03 08:48:30
I moved this up here because I was looking at the
juliandoucette
2017/11/06 13:06:57
suggest:
1. Put the license header into an impor
ire
2017/11/06 14:41:16
Good idea. Done.
| |
| 20 @import "../../node_modules/website-defaults/static/scss/main"; | 5 @import "../../node_modules/website-defaults/static/scss/main"; |
| 6 | |
| 7 /*! | |
| 8 * This file is part of help.eyeo.com. | |
| 9 * Copyright (C) 2017-present eyeo GmbH | |
| 10 * | |
| 11 * help.eyeo.com is free software: you can redistribute it and/or modify | |
| 12 * it under the terms of the GNU General Public License as published by | |
| 13 * the Free Software Foundation, either version 3 of the License, or | |
| 14 * (at your option) any later version. | |
| 15 * | |
| 16 * help.eyeo.com is distributed in the hope that it will be useful, | |
| 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 * GNU General Public License for more details. | |
| 20 * | |
| 21 * You should have received a copy of the GNU General Public License | |
| 22 * along with help.eyeo.com. If not, see <http://www.gnu.org/licenses/>. | |
| 23 */ | |
| 24 | |
| 25 // Base styles | |
| 26 //////////////////////////////////////////////////////////////////////////////// | |
| 27 | |
| 21 @import "base/font"; | 28 @import "base/font"; |
| 22 @import "base/utilities"; | 29 @import "base/utilities"; |
| 23 | 30 |
| 24 // Content styles ////////////////////////////////////////////////////////////// | 31 // Content styles |
| 32 //////////////////////////////////////////////////////////////////////////////// | |
| 33 | |
| 25 @import "content/typography"; | 34 @import "content/typography"; |
| 26 | 35 |
| 27 // Layout styles /////////////////////////////////////////////////////////////// | 36 // Layout styles |
| 37 //////////////////////////////////////////////////////////////////////////////// | |
| 38 | |
| 28 @import "layout/navbar"; | 39 @import "layout/navbar"; |
| 29 @import "layout/header"; | 40 @import "layout/header"; |
| 30 @import "layout/footer"; | 41 @import "layout/footer"; |
| 31 @import "layout/grid"; | 42 @import "layout/grid"; |
| 32 @import "layout/body"; | 43 @import "layout/body"; |
| 33 | 44 |
| 34 // Component styles //////////////////////////////////////////////////////////// | 45 // Component styles |
| 46 //////////////////////////////////////////////////////////////////////////////// | |
| 47 | |
| 35 @import "components/search-form"; | 48 @import "components/search-form"; |
| 36 @import "components/card"; | 49 @import "components/card"; |
| 37 @import "components/select"; | 50 @import "components/select"; |
| 38 @import "components/browser-select"; | 51 @import "components/browser-select"; |
| 39 @import "components/lists"; | 52 @import "components/lists"; |
| 40 @import "components/contact"; | 53 @import "components/contact"; |
| 41 @import "components/accordion"; | 54 @import "components/accordion"; |
| 42 @import "components/article"; | 55 @import "components/article"; |
| 43 @import "components/breadcrumb"; | 56 @import "components/breadcrumb"; |
| 44 @import "components/pre-icon"; | 57 @import "components/pre-icon"; |
| OLD | NEW |