-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (50 loc) · 734 Bytes
/
styles.css
File metadata and controls
57 lines (50 loc) · 734 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
50
51
52
53
54
55
56
57
#icon {
height: 24px;
margin-right: 8px;
}
h1 {
color: #41ce42;
margin: 0;
}
h4 {
color: #e5ff66;
margin: 0;
}
#loading {
text-align: center;
color: #41ce42;
width: 100%;
margin: 30px 0;
}
#loader {
border: 5px solid #808080;
border-top: 5px solid #41ce42;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
margin: 30px auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
h2 {
color: #e5ff66;
margin: 0;
}
#resultsContainer > div {
display: flex;
align-items: center;
margin: 10px 0;
div {
flex-grow: 1
}
img {
height: 75px;
margin-right: 10px;
}
h3 {
margin: 0 0 10px;
}
}