Sha256: eefe7ce0179592d0dbda84237d6f4c759c19e1ea32a245a94768a9de6478dbcc
Contents?: true
Size: 1.07 KB
Versions: 4
Compression:
Stored size: 1.07 KB
Contents
/* Colors */ $primary-color: white; $secondary-color: black; $tertiary-color: #575757; /* Font */ $base-font-family: "Roboto", Arial; $base-font-color: $secondary-color; $base-font-size: 16px; $big-font-size: 18px; $biggest-font-size: 20px; @font-face { font-family: "Roboto"; src: url("../fonts/Roboto-Regular.ttf"); } @font-face { font-family: "Roboto"; src: url("../fonts/Roboto-Bold.ttf"); font-weight: bold; } /* Layout */ $screen-width-extra-small: 320px; $screen-width-small: 600px; $screen-width-medium: 900px; $screen-width-large: 1200px; @mixin extra-small-screen { @media only screen and (min-width: #{$screen-width-extra-small}) { @content; } } @mixin small-screen { @media only screen and (min-width: #{$screen-width-small}) { @content; } } @mixin medium-screen { @media only screen and (min-width: #{$screen-width-medium}) { @content; } } @mixin large-screen { @media only screen and (min-width: #{$screen-width-large}) { @content; } } $header-height: 80px; $content-max-width: 780px;
Version data entries
4 entries across 4 versions & 1 rubygems