This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Returns string after joining list elements with a glue string. | |
// Similar to PHP's implode function | |
// | |
@function implode($list, $glue: '', $is-nested: false) | |
$result: null | |
@for $i from 1 through length($list) | |
$e: nth($list, $i) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Font Smoothing mixin usage | |
// @include font-smoothing($value) | |
// | |
=font-smoothing($value: antialiased) | |
@if $value == antialiased | |
-webkit-font-smoothing: antialiased | |
-moz-osx-font-smoothing: grayscale | |
@else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Font Face mixin usage (https://github.com/perry/sass-font-face) | |
// @include font-face($style-name, $file, $family, $category) | |
// $style-name being the name of the font e.g. Helvetica | |
// $file meaning the file name, without the file extensions | |
// $family being the folder inside the fonts folder where the font files are | |
// $category is serif or sans-serif or monospace etc. as a fall back in CSS | |
// | |
=font-face($style-name, $file, $family, $category: "", $weight: "", $style: "") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.layout #layout-mainmenu.navbar { | |
background-color: #FFF; | |
border-bottom: 1px solid #DDD; | |
} | |
.layout #layout-mainmenu.navbar ul li { | |
text-align: center; | |
padding: 0 15px; | |
margin-right: 3px; | |
} | |
nav#layout-mainmenu.navbar ul li.power-off a, nav#layout-mainmenu.navbar ul li.preview a { |
NewerOlder