style.scss
632 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
body {
padding: 50px;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
a {
color: #00B7FF;
}
.form {
position: relative;
input {
width: 20em;
}
.fa-spin {
display: none;
position: absolute;
left: 21em;
top: 0.5em;
}
&.loading {
.fa-spin {
display: block;
}
}
.suggest-box {
position: absolute;
background-color: #212427;
color: #fff;
margin: 0;
padding: 0;
li {
padding: 0.5em 1em;
cursor: pointer;
list-style-type: none;
&:hover {
background-color: #659CD8;
}
}
}
}
.dummy {
color: silver;
}