summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2017-08-22 18:14:29 +0300
committerRasmus Andersson <rasmus@notion.se>2017-08-22 18:14:29 +0300
commitc3ed8f3c32234b6d754fea0c108a424d0f215a8f (patch)
tree6e57aa38893b77f33615a701002d8eecb0a6b2d5
parent51b4f0c84a5df4422c97819712186bf68a330079 (diff)
downloadinter-c3ed8f3c32234b6d754fea0c108a424d0f215a8f.tar.xz
website: text selection
-rw-r--r--docs/index.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/index.html b/docs/index.html
index b4bec51fa..b06d141f9 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -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;
}