-
Notifications
You must be signed in to change notification settings - Fork 1
/
corona.css
111 lines (94 loc) · 1.95 KB
/
corona.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
body {
font-family: 'Montserrat', sans-serif;
margin: 40px auto;
max-width: 650px;
line-height: 1.6;
font-size: 18px;
color: #363636;
background-color: #f7f7f7;
padding: 0 10px
}
h1, h2, h3 {
line-height: 1.2
}
li {
list-style: none;
}
.small {
font-size: .8rem;
}
.clickable {
cursor: pointer;
}
.centerContainer {
display: flex;
justify-content: center;
align-items: center;
}
.country {
stroke: #aaaaaa;
fill: rgba(0, 0, 0, 0);
}
.selected {
stroke: dimgray;
fill: #17b78c;
}
.grey {
color: #aaaaaa;
}
hr {
border-top: 1px dotted #aaaaaa;
}
.button_corona {
transition-duration: 1.8s;
font-family: 'Montserrat', sans-serif;
font-size: 18px;
color: #363636;
background-color: rgba(0, 0, 0, 0);
border: none;
padding: .8rem 2rem;
text-align: center;
text-decoration: none;
-webkit-box-shadow: 0 5px 40px -10px rgba(0, 0, 0, .57);
-moz-box-shadow: 0 5px 40px -10px rgba(0, 0, 0, .57);
}
.button_corona:focus {
outline: none;
}
.clicked {
transition-duration: .8s;
color: white;
background-color: #4CAF50;
border-radius: 2rem;
border: none;
-webkit-box-shadow: 0 5px 40px -10px rgba(0, 0, 0, 0);
-moz-box-shadow: 0 5px 40px -10px rgba(0, 0, 0, 0);
}
.corona {
padding: .2rem;
font-family: 'Montserrat', sans-serif;
font-size: 1.1rem;
color: #363636;
background-color: rgba(0, 0, 0, 0);
border-color: #aaaaaa;
}
span.clickable {
white-space: nowrap;
}
.error {
color: #363636;
background-color: rgba(256, 0, 0, .3);
}
#home {
animation: example 1.5s ease-in-out infinite alternate;
}
@keyframes example {
from {
-webkit-box-shadow: 0 5px 40px -10px rgba(0, 0, 0, .57);
-moz-box-shadow: 0 5px 40px -10px rgba(0, 0, 0, .57)
}
to {
-webkit-box-shadow: 0 5px 40px -10px rgba(0, 0, 0, 0);
-moz-box-shadow: 0 5px 40px -10px rgba(0, 0, 0, 0)
}
}