You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
488 B
11 lines
488 B
@mixin selection($bg, $color: inherit, $text-shadow: none){
|
|
* {
|
|
&::-moz-selection { background: $bg; color: $color; text-shadow: $text-shadow; }
|
|
&::-webkit-selection { background: $bg; color: $color; text-shadow: $text-shadow; }
|
|
&::selection { background: $bg; color: $color; text-shadow: $text-shadow; }
|
|
}
|
|
}
|
|
|
|
$link-color: lighten(#165b94, 3) !default;
|
|
$mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace !default;
|
|
.mono { font-family: $mono; }
|