mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-02-09 17:20:56 +00:00
1. Some general styling improvements especially for syntax and navigation
2. JS line numbering now supports embedded gists 3. Added a favicon
This commit is contained in:
@ -50,3 +50,4 @@ $textinput-border-focus: #989898;
|
||||
#articles a, #articles + aside a {
|
||||
@include link-colors($link-color, $hover: saturate(darken($link_color, 15), 20), $focus: saturate(darken($link_color, 15), 20), $visited: darken(adjust_hue($link_color, 70), 10));
|
||||
}
|
||||
a { @include transition(color, .5s); }
|
||||
|
||||
@ -5,11 +5,11 @@
|
||||
height: image-height($img);
|
||||
}
|
||||
|
||||
@mixin selection($bg: #b4d5fe, $color: inherit){
|
||||
@mixin selection($bg, $color: inherit, $text-shadow: none){
|
||||
* {
|
||||
&::-moz-selection { background: $bg; color: $color; text-shadow: darken($bg, 20) 0 1px 1px; }
|
||||
&::-webkit-selection { background: $bg; color: $color; text-shadow: darken($bg, 20) 0 1px 1px;}
|
||||
&::selection { background: $bg; color: $color; text-shadow: darken($bg, 20) 0 1px 1px; }
|
||||
&::-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; }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user