PluginProbe
Code Snippets / 3.4.1
Code Snippets v3.4.1
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / css / _base.scss

_base.scss in Code Snippets 3.4.1, at css/_base.scss

30 lines 494 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 $php-active: #0073aa;
3 $php-inactive: #579;
4 $php-background: #78c8e6;
5
6 $css-inactive: #b452cd;
7 $css-active: #7d26cd;
8 $css-background: #551a8b;
9 $css-highlight: #8000ff;
10
11 $html-active: #548b54;
12 $html-background: #548b54;
13 $html-highlight: $html-active;
14
15 $js-inactive: #cd6600;
16 $js-active: #d44500;
17 $js-background: #cd6600;
18 $js-highlight: #cd6600;
19
20
21 @mixin link-colors($color, $lightness: 15%) {
22 a {
23 color: $color;
24
25 &:hover, &:active, &:focus {
26 color: lighten($color, $lightness);
27 }
28 }
29 }
30