-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2ece46c
commit 9be10f7
Showing
7 changed files
with
654 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
@charset "utf-8"; | ||
|
||
// Define defaults for each variable. | ||
|
||
$base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default; | ||
$base-font-size: 16px !default; | ||
$base-font-weight: 400 !default; | ||
$small-font-size: $base-font-size * 0.875 !default; | ||
$base-line-height: 1.5 !default; | ||
|
||
$spacing-unit: 30px !default; | ||
|
||
$text-color: #e0e0e0; | ||
$background-color: #202020; | ||
$brand-color: #2a7ae2 !default; | ||
|
||
$border-color-dark: #363b3d; | ||
$code-color-dark: #1d1f20; | ||
|
||
$grey-color: #969696; | ||
$grey-color-light: lighten($grey-color, 10%); | ||
$grey-color-dark: darken($grey-color, 25%); | ||
|
||
$table-text-align: left !default; | ||
|
||
// Width of the content area | ||
$content-width: 800px !default; | ||
|
||
$on-palm: 600px !default; | ||
$on-laptop: 800px !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-dark/base", | ||
"minima-dark/layout", | ||
"minima-dark/syntax-highlighting" | ||
; |
Oops, something went wrong.