-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
73 lines (62 loc) · 1.15 KB
/
index.css
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
.body{
font-family: 'Source Sans Pro';
}
#tags{
height: 100%;
margin-top: 0.5em;
border-bottom: 2px solid black;
}
.facet-wrapper{
display: inline-block;
border: 2px solid rgb(0, 0, 0);
border-radius: 0.25em;
margin-right: 0.5em;
margin-bottom: 0.5em;
padding: 0.4em;
height: 100%;
}
.close-button {
background-color: #555555;
border: none;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 1em;
font-weight: 500;
margin-left: 0.2em;
border-radius: 0.25em;
}
.close-button:focus {
outline: 3px solid #fd0;
border: 2px solid black;
}
.search-results{
display: block;
}
.result-wrapper{
display: block;
background-color: #555555;
color: white;
border: 2px solid rgb(0, 0, 0);
border-radius: 0.25em;
margin-bottom: 0.2em;
padding: 0.4em;
height: 100%;
}
.results-count-wrapper{
margin: 0.5em;
font-weight: 500;
}
.hidden{
visibility: hidden;
}
.loading-icon {
animation: blinker 1s linear infinite;
font-weight: 800;
}
@keyframes blinker {
50% {
opacity: 0;
}
}