| /* Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. */ |
| |
| // SIMPLE GRID - SASS/SCSS |
| |
| |
| // fonts |
| $font-weight-light: 300; |
| $font-weight-regular: 400; |
| $font-weight-heavy: 700; |
| |
| // colors |
| $dark-grey: #333447; |
| $dark-gray: #333447; // for the Americans |
| |
| |
| .font-light { |
| font-weight: $font-weight-light; |
| } |
| |
| .font-regular { |
| font-weight: $font-weight-regular; |
| } |
| |
| .font-heavy { |
| font-weight: $font-weight-heavy; |
| } |
| |
| // utility |
| |
| .left { |
| text-align: left; |
| } |
| |
| .right { |
| text-align: right; |
| } |
| |
| .center { |
| text-align: center; |
| margin-left: auto; |
| margin-right: auto; |
| } |
| |
| .justify { |
| text-align: justify; |
| } |
| |
| .hidden-sm { |
| display: none; |
| } |
| |
| // grid |
| |
| $width: 98%; |
| $gutter: 2%; |
| $breakpoint-small: 33.75em; // 540px |
| $breakpoint-med: 45em; // 720px |
| $breakpoint-large: 60em; // 960px |
| |
| .container { |
| width: 100%; |
| margin-left: auto; |
| margin-right: auto; |
| |
| @media only screen and (min-width: $breakpoint-small) { |
| width: 80%; |
| } |
| |
| @media only screen and (min-width: $breakpoint-large) { |
| width: 75%; |
| max-width: 60rem; |
| } |
| } |
| |
| .row { |
| position: relative; |
| width: 100%; |
| } |
| |
| .row [class^="col"] { |
| float: left; |
| margin: 0.5rem 1%; |
| min-height: 0.125rem; |
| } |
| |
| .row::after { |
| content: ""; |
| display: table; |
| clear: both; |
| } |
| |
| .col-1, |
| .col-2, |
| .col-3, |
| .col-4, |
| .col-5, |
| .col-6, |
| .col-7, |
| .col-8, |
| .col-9, |
| .col-10, |
| .col-11, |
| .col-12 { |
| width: $width; |
| } |
| |
| .col-1-sm { |
| width: ($width / 12) - ($gutter * 11 / 12); |
| } |
| |
| .col-2-sm { |
| width: ($width / 6) - ($gutter * 10 / 12); |
| } |
| |
| .col-3-sm { |
| width: ($width / 4) - ($gutter * 9 / 12); |
| } |
| |
| .col-4-sm { |
| width: ($width / 3) - ($gutter * 8 / 12); |
| } |
| |
| .col-5-sm { |
| width: ($width / (12 / 5)) - ($gutter * 7 / 12); |
| } |
| |
| .col-6-sm { |
| width: ($width / 2) - ($gutter * 6 / 12); |
| } |
| |
| .col-7-sm { |
| width: ($width / (12 / 7)) - ($gutter * 5 / 12); |
| } |
| |
| .col-8-sm { |
| width: ($width / (12 / 8)) - ($gutter * 4 / 12); |
| } |
| |
| .col-9-sm { |
| width: ($width / (12 / 9)) - ($gutter * 3 / 12); |
| } |
| |
| .col-10-sm { |
| width: ($width / (12 / 10)) - ($gutter * 2 / 12); |
| } |
| |
| .col-11-sm { |
| width: ($width / (12 / 11)) - ($gutter * 1 / 12); |
| } |
| |
| .col-12-sm { |
| width: $width; |
| } |
| |
| @media only screen and (min-width: $breakpoint-med) { |
| .col-1 { |
| width: ($width / 12) - ($gutter * 11 / 12); |
| } |
| .col-2 { |
| width: ($width / 6) - ($gutter * 10 / 12); |
| } |
| .col-3 { |
| width: ($width / 4) - ($gutter * 9 / 12); |
| } |
| .col-4 { |
| width: ($width / 3) - ($gutter * 8 / 12); |
| } |
| .col-5 { |
| width: ($width / (12 / 5)) - ($gutter * 7 / 12); |
| } |
| .col-6 { |
| width: ($width / 2) - ($gutter * 6 / 12); |
| } |
| .col-7 { |
| width: ($width / (12 / 7)) - ($gutter * 5 / 12); |
| } |
| .col-8 { |
| width: ($width / (12 / 8)) - ($gutter * 4 / 12); |
| } |
| .col-9 { |
| width: ($width / (12 / 9)) - ($gutter * 3 / 12); |
| } |
| .col-10 { |
| width: ($width / (12 / 10)) - ($gutter * 2 / 12); |
| } |
| .col-11 { |
| width: ($width / (12 / 11)) - ($gutter * 1 / 12); |
| } |
| .col-12 { |
| width: $width; |
| } |
| |
| .hidden-sm { |
| display: block; |
| } |
| } |
| |
| .row { |
| display: -webkit-box; |
| display: -webkit-flex; |
| display: -ms-flexbox; |
| display: flex; |
| flex-wrap: wrap; |
| } |
| |
| .row > [class*='col-'] { |
| display: flex; |
| flex-direction: column; |
| } |