Sha256: 90ca43b58c3ef5f7e3ba4382e6bf1580eb6a7144586c91b70c82930c438e68f8
Contents?: true
Size: 1.43 KB
Versions: 3
Compression:
Stored size: 1.43 KB
Contents
// ----------------------------------------------------------------------------- // This file contains all application-wide Sass variables. // ----------------------------------------------------------------------------- /// Regular font family /// @type List $text-font-stack: 'Roboto', Arial, sans-serif !default; /// Code (monospace) font family /// @type List $code-font-stack: 'Courier New', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Monaco', monospace !default; /// Copy text color /// @type Color $text-color: rgb(34, 34, 34) !default; /// Main brand color /// @type Color $brand-color: rgb(229, 0, 80) !default; /// Light grey /// @type Color $light-grey: rgb(237, 237, 237) !default; /// Medium grey /// @type Color $mid-grey: rgb(153, 153, 153) !default; /// Dark grey /// @type Color $dark-grey: rgb(68, 68, 68) !default; /// Container's maximum width /// @type Length $max-width: 1180px !default; /// Breakpoints map /// @prop {String} keys - Keys are identifiers mapped to a given length /// @prop {Map} values - Values are actual breakpoints expressed in pixels $breakpoints: ( 'small': 320px, 'medium': 768px, 'large': 1024px, ) !default; /// Relative or absolute URL where all assets are served from /// @type String /// @example scss - When using a CDN /// $base-url: 'http://cdn.example.com/assets/'; $base-url: '/assets/' !default;
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mancalledmountain-theme-0.1.2 | _sass/abstracts/_variables.scss |
mancalledmountain-theme-0.1.1 | _sass/abstracts/_variables.scss |
mancalledmountain-theme-0.1.0 | _sass/abstracts/_variables.scss |