website: text selection
This commit is contained in:
parent
51b4f0c84a
commit
c3ed8f3c32
1 changed files with 21 additions and 0 deletions
|
|
@ -169,6 +169,27 @@ h1 > a, h2 > a, h3 > a {
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
background: none;
|
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 {
|
a > img {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue