-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (48 loc) · 849 Bytes
/
style.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
.lg-view{
display:inline-block;
}
.sm-view{
display:none;
}
@media screen and (max-width: 1200px) {
.lg-view{
display:none;
}
.sm-view{
display:inline-block;
}
}
.loader {
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #077BFF; /* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
position: absolute;
top: 25%;
left: 40%;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.card {
border: unset;
}
.team-link:hover {
text-decoration: underline;
}
.leaderboard-link:hover {
text-decoration: underline;
}
.nav-title,.leaderboard-link,.team-link {
cursor: pointer;
}
.invalid {
font-style: italic;
}
span.icon:before {
font-family: 'Glyphicons Halflings';
content: "\f015";
}