mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
eafd3fc531
* Migrate docs to master branch, add action to deploy to pages branch on push * Update docs, build pipeline to reflect new method of updating gh-pages * Removed make build-gh-pages from post-commit hook Co-authored-by: Josh Rabinowitz <joshr@joshr.com>
59 lines
1.2 KiB
SCSS
59 lines
1.2 KiB
SCSS
---
|
|
# Only the main Sass file needs front matter (the dashes are enough)
|
|
---
|
|
@charset "utf-8";
|
|
|
|
|
|
|
|
// Our variables
|
|
$base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
$base-font-size: 16px;
|
|
$base-font-weight: 400;
|
|
$small-font-size: $base-font-size * 0.875;
|
|
$base-line-height: 1.5;
|
|
|
|
$spacing-unit: 30px;
|
|
|
|
$text-color: #111;
|
|
$background-color: #fdfdfd;
|
|
|
|
$grey-color: #828282;
|
|
$grey-color-light: lighten($grey-color, 40%);
|
|
$grey-color-dark: darken($grey-color, 25%);
|
|
|
|
$purple-color: rgb(238, 81, 59);
|
|
$purple-color-light: lighten($purple-color, 40%);
|
|
$purple-color-dark: darken($purple-color, 25%);
|
|
|
|
$brand-color: $purple-color;
|
|
|
|
// Width of the content area
|
|
$content-width: 800px;
|
|
|
|
$on-palm: 600px;
|
|
$on-laptop: 800px;
|
|
|
|
|
|
|
|
// 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;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// Import partials from `sass_dir` (defaults to `_sass`)
|
|
@import
|
|
"base",
|
|
"layout",
|
|
"syntax-highlighting"
|
|
;
|