Add 'themes/hermit/' from commit '56843f347a642324970ba30d58f23c64e037bb7c'
git-subtree-dir: themes/hermit
git-subtree-mainline: 7844fa5501c271b1b2b5ece2cb19f3202cd6e5ad
git-subtree-split: 56843f347a
34 lines
894 B
SCSS
34 lines
894 B
SCSS
// Colors
|
|
//
|
|
$theme: #018574;
|
|
$text: #e8eef2;
|
|
$light-grey: #494f5c;
|
|
$dark-grey: #3B3E48;
|
|
$highlight-grey: #7d828a;
|
|
$midnightblue: #2c3e50;
|
|
|
|
// Fonts
|
|
//
|
|
$fonts: "Trebuchet MS", Verdana, "Verdana Ref", "Segoe UI", Candara, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
|
|
$code-fonts: Consolas, "Andale Mono WT", "Andale Mono", Menlo, Monaco, "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, "YaHei Consolas Hybrid", monospace, "Segoe UI Emoji", "PingFang SC", "Microsoft YaHei";
|
|
|
|
// Mixins
|
|
//
|
|
@mixin dimmed {
|
|
opacity: .6;
|
|
}
|
|
|
|
@mixin aTag {
|
|
a {
|
|
word-wrap: break-word;
|
|
border: none;
|
|
box-shadow: inset 0 -4px 0 $theme;
|
|
transition-property: box-shadow;
|
|
transition-duration: .1s;
|
|
|
|
&:hover {
|
|
box-shadow: inset 0 -1em 0 $theme;
|
|
}
|
|
}
|
|
}
|