pico-tracker/main.scss

34 wiersze
713 B
SCSS
Executable File

---
# Only the main Sass file needs front matter (the dashes are enough)
---
@charset "utf-8";
// Google Fonts
@import url(http://fonts.googleapis.com/css?family=Open+Sans:700,400);
$open-sans: 'Open Sans';
// Our variables
$base-font-family: $open-sans, Helvetica, Arial, sans-serif;
$spacing-unit: 30px;
// Using media queries with like this:
// @include media-query($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
"custom",
"syntax-highlighting"
;