website: text selection

This commit is contained in:
Rasmus Andersson 2017-08-22 08:14:29 -07:00
parent 51b4f0c84a
commit c3ed8f3c32

View file

@ -169,6 +169,27 @@ h1 > a, h2 > a, h3 > a {
color: #ccc;
background: none;
}
.row ::selection {
background: rgb(48, 112, 232);
color: white;
text-shadow: none;
}
.row ::-moz-selection {
background: rgb(48, 112, 232);
color: white;
text-shadow: none;
}
.row.dark ::selection {
background: rgb(218, 228, 255);
color: black;
}
.row.dark ::-moz-selection {
background: rgb(164, 188, 255);
color: black;
}
a > img {
display: block;
}