forked from unitoo/website
48 lines
1.2 KiB
SCSS
48 lines
1.2 KiB
SCSS
@charset "utf-8";
|
|
|
|
@import 'fontello';
|
|
@import 'bootstrap-custom';
|
|
//@import 'vendor/fonts';
|
|
//@import 'vendor/animate';
|
|
//@import 'vendor/morphext';
|
|
|
|
// Font variables
|
|
// $font-name: libretto-icons;
|
|
|
|
// @font-face {
|
|
// font-family: $font-name;
|
|
// src: asset_url($font-name + '/' + $font-name + '.eot'); /* IE9 Compat Modes */
|
|
// src: asset_url($font-name + '/' + $font-name + '.woff') format('woff'),
|
|
// /* Pretty Modern Browsers */ asset_url($font-name + '/' + $font-name + '.ttf')
|
|
// format('truetype'),
|
|
// /* Safari, Android, iOS */ asset_url($font-name + '/' + $font-name + '.svg#font_name')
|
|
// format('svg'); /* Legacy iOS */
|
|
// }
|
|
|
|
// Our variables
|
|
$spacing-unit: 30px;
|
|
|
|
$title-color: #009fe3;
|
|
$success-color: $green;
|
|
$success-color-hover: #218838;
|
|
|
|
$grey-color: #a09a92;
|
|
$grey-color-light: lighten($grey-color, 30%);
|
|
$grey-color-dark: darken($grey-color, 25%);
|
|
|
|
// Width of the content area
|
|
// $content-width: 800px;
|
|
|
|
$on-palm: 600px;
|
|
$on-laptop: 800px;
|
|
|
|
//$shadow: -0.1rem 0.2rem 0 rgba(0, 0, 0, 0.05);
|
|
|
|
@mixin media-query($device) {
|
|
@media screen and (max-width: $device) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
// Import partials from `sass_dir` (defaults to `_sass`)
|
|
@import 'base', 'layout', 'sidebar', 'cookie';//, 'syntax-highlighting';
|