| /* 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. */ |
| |
| @charset "utf-8"; |
| |
| // import grid system |
| @import "minima/simple-grid"; |
| |
| // Define defaults for each variable. |
| |
| $base-font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol" !default; |
| $base-font-size: 17px !default; |
| $base-font-weight: 300 !default; |
| $small-font-size: $base-font-size * 0.875 !default; |
| $base-line-height: 1.5 !default; |
| |
| $spacing-unit: 30px !default; |
| |
| $text-color: white !default; |
| $background-color: #fdfdfd !default; |
| $brand-color: #2a7ae2 !default; |
| |
| $color-mxnet: rgb(4,140,204); |
| $color-mxnet-dark: rgb(4,60,110); |
| $grey-color: #828282 !default; |
| $grey-color-light: lighten($grey-color, 45%) !default; |
| $grey-color-dark: darken($grey-color, 25%) !default; |
| |
| $table-text-align: left !default; |
| |
| // Width of the content area |
| $content-width: 1150px !default; |
| |
| $on-palm: 600px !default; |
| $on-palm: 900px !default; |
| $on-laptop: 1024px !default; |
| |
| // Use media queries like this: |
| // @include media-query($on-palm) { |
| // .wrapper { |
| // padding-right: $spacing-unit / 2; |
| // padding-left: $spacing-unit / 2; |
| // } |
| // } |
| @mixin media-query($device) { |
| @media screen and (max-width: $device) { |
| @content; |
| } |
| } |
| |
| @mixin relative-font-size($ratio) { |
| font-size: $base-font-size * $ratio; |
| } |
| |
| // Import partials. |
| @import |
| "minima/base", |
| "minima/layout", |
| "minima/syntax-highlighting", |
| "minima/home", |
| "minima/blog", |
| "minima/features", |
| "minima/ecosystem", |
| "minima/docs", |
| "minima/getting_started", |
| "minima/colorful" |
| ; |