Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,40 @@
1
+#search {
2
+  position: relative;
3
+  font-size: 18px;
4
+  padding-top: 40px;
5
+  margin: -20px auto 0px;
6
+
7
+  label {
8
+    position: absolute;
9
+    left: 17px;
10
+    top: 51px;
11
+  }
12
+
13
+  #search-input, .hint {
14
+    padding-left: 43px;
15
+    padding-right: 43px;
16
+    border-radius: 23px;
17
+  }
18
+
19
+  .hint {
20
+    color: #aaa;
21
+  }
22
+
23
+  #search-clear {
24
+    text-decoration: none;
25
+    position: absolute;
26
+    right: 18px;
27
+    top: 54px;
28
+    color: @text-muted;
29
+    &:hover {
30
+      color: mix(#000, @text-muted, 20%);
31
+    }
32
+  }
33
+}
34
+
35
+#search-results {
36
+  em {
37
+    font-style: normal;
38
+    text-decoration: underline;
39
+  }
40
+}