mirror of
https://github.com/TheLocehiliosan/yadm
synced 2024-10-27 20:34:27 +00:00
148 lines
4.6 KiB
SCSS
148 lines
4.6 KiB
SCSS
/* ==========================================================================
|
|
Variables
|
|
========================================================================== */
|
|
|
|
/*
|
|
Typography
|
|
========================================================================== */
|
|
|
|
$doc-font-size : 16;
|
|
|
|
/* paragraph indention */
|
|
$paragraph-indent : false; // true, false (default)
|
|
$indent-var : 1.3em;
|
|
|
|
/* system typefaces */
|
|
$serif : Georgia, Times, serif;
|
|
$sans-serif : -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif;
|
|
$monospace : Monaco, Consolas, "Lucida Console", monospace;
|
|
|
|
/* sans serif typefaces */
|
|
$sans-serif-narrow : $sans-serif;
|
|
$helvetica : Helvetica, "Helvetica Neue", Arial, sans-serif;
|
|
|
|
/* serif typefaces */
|
|
$georgia : Georgia, serif;
|
|
$times : Times, serif;
|
|
$bodoni : "Bodoni MT", serif;
|
|
$calisto : "Calisto MT", serif;
|
|
$garamond : Garamond, serif;
|
|
|
|
$global-font-family : $sans-serif;
|
|
$header-font-family : $sans-serif;
|
|
$caption-font-family : $serif;
|
|
|
|
/* type scale */
|
|
$type-size-1 : 2.441em; // ~39.056px
|
|
$type-size-2 : 1.953em; // ~31.248px
|
|
$type-size-3 : 1.563em; // ~25.008px
|
|
$type-size-4 : 1.25em; // ~20px
|
|
$type-size-5 : 1em; // ~16px
|
|
$type-size-6 : 0.75em; // ~12px
|
|
$type-size-7 : 0.6875em; // ~11px
|
|
$type-size-8 : 0.625em; // ~10px
|
|
|
|
|
|
/*
|
|
Colors
|
|
========================================================================== */
|
|
|
|
$gray : #7a8288;
|
|
$dark-gray : mix(#000, $gray, 40%);
|
|
$darker-gray : mix(#000, $gray, 60%);
|
|
$light-gray : mix(#fff, $gray, 50%);
|
|
$lighter-gray : mix(#fff, $gray, 90%);
|
|
|
|
$body-color : #fff;
|
|
$background-color : #fff;
|
|
$code-background-color : #fafafa;
|
|
$code-background-color-dark : $light-gray;
|
|
$text-color : $dark-gray;
|
|
$border-color : $lighter-gray;
|
|
|
|
$primary-color : #7a8288;
|
|
$success-color : #62c462;
|
|
$warning-color : #f89406;
|
|
$danger-color : #ee5f5b;
|
|
$info-color : #52adc8;
|
|
|
|
/* brands */
|
|
$behance-color : #1769FF;
|
|
$dribbble-color : #ea4c89;
|
|
$facebook-color : #3b5998;
|
|
$flickr-color : #ff0084;
|
|
$foursquare-color : #0072b1;
|
|
$github-color : #171516;
|
|
$google-plus-color : #dd4b39;
|
|
$instagram-color : #517fa4;
|
|
$lastfm-color : #d51007;
|
|
$linkedin-color : #007bb6;
|
|
$pinterest-color : #cb2027;
|
|
$rss-color : #fa9b39;
|
|
$soundcloud-color : #ff3300;
|
|
$stackoverflow-color : #fe7a15;
|
|
$tumblr-color : #32506d;
|
|
$twitter-color : #55acee;
|
|
$vimeo-color : #1ab7ea;
|
|
$vine-color : #00bf8f;
|
|
$youtube-color : #bb0000;
|
|
$xing-color : #006567;
|
|
|
|
|
|
/* links */
|
|
$link-color : $info-color;
|
|
$link-color-hover : mix(#000, $link-color, 25%);
|
|
$link-color-visited : mix(#fff, $link-color, 25%);
|
|
$masthead-link-color : $primary-color;
|
|
$masthead-link-color-hover : mix(#000, $primary-color, 25%);
|
|
|
|
|
|
/*
|
|
Breakpoints
|
|
========================================================================== */
|
|
|
|
@include breakpoint-set("to ems", true);
|
|
|
|
$small : 600px;
|
|
$medium : 768px;
|
|
$medium-wide : 900px;
|
|
$large : 1024px;
|
|
$x-large : 1280px;
|
|
|
|
|
|
/*
|
|
Grid
|
|
========================================================================== */
|
|
|
|
$right-sidebar-width-narrow : 200px;
|
|
$right-sidebar-width : 300px;
|
|
$right-sidebar-width-wide : 400px;
|
|
|
|
$susy: (
|
|
columns: 12,
|
|
// column-width: 90px,
|
|
gutters: 1/4,
|
|
math: fluid,
|
|
output: float,
|
|
gutter-position: after,
|
|
container: $large,
|
|
global-box-sizing: border-box,
|
|
// debug: (
|
|
// image: show,
|
|
// color: blue,
|
|
// output: overlay,
|
|
// toggle: top right,
|
|
// ),
|
|
);
|
|
|
|
|
|
/*
|
|
Other
|
|
========================================================================== */
|
|
|
|
$border-radius : 4px;
|
|
$box-shadow : 0 1px 1px rgba(0, 0, 0, 0.125);
|
|
$navicon-width : 28px;
|
|
$navicon-height : 4px;
|
|
$global-transition : all 0.2s ease-in-out;
|