Added coloration for selections and contrasting (#476)
color for anchor elements when selected
This commit is contained in:
parent
42dca3daae
commit
4ff56c6407
@ -4,13 +4,24 @@ html, body {
|
||||
background: $background;
|
||||
color: $black;
|
||||
font-family: $route159;
|
||||
::selection {
|
||||
background: $lightpurple;
|
||||
}
|
||||
::-moz-selection {
|
||||
background: $lightpurple;
|
||||
}
|
||||
}
|
||||
|
||||
a, a:visited {
|
||||
color: $purple;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a::selection {
|
||||
color: $white;
|
||||
}
|
||||
a::-moz-selection {
|
||||
color: $white;
|
||||
}
|
||||
small {
|
||||
margin-left: 1em;
|
||||
color: transparentize($black, 0.6);
|
||||
|
@ -1,5 +1,4 @@
|
||||
// Colors
|
||||
|
||||
$background: #F4F4F4;
|
||||
$form-input-background: #FFFFFF;
|
||||
$gray: #E3E3E3;
|
||||
@ -7,6 +6,7 @@ $lightgray: #ECECEC;
|
||||
$black: #242424;
|
||||
$white: #F4F4F4;
|
||||
$purple: #7765E3;
|
||||
$lightpurple: #c2bbee;
|
||||
$red: #E92F2F;
|
||||
|
||||
// Fonts
|
||||
|
Loading…
Reference in New Issue
Block a user