search.scss
876 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
45
46
47
48
49
$green-color: #6e9e7b;
.search-results {
.summary {
color: #bbbbbb;
font-size: 13px;
}
.result {
margin: 25px 0;
.title {
h4 {
margin: 0;
}
}
.info {
.profile {
color: $green-color;
}
.time {
color: $green-color;
font-size: 12px;
}
.bullet-separator {
margin: 0 2px;
font-size: 10px;
color: #afd6ba;
}
}
}
}
.search-box-title {
border: 0;
border-bottom: 1px solid rgba(0,0,0,.15);
border-radius: 0;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
letter-spacing: 0;
font-weight: 300;
font-style: normal;
font-size: 50px;
height: 80px;
padding: 0;
width: 100%;
}
.search-box-title:focus {
outline: none;
}