-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
156 lines (136 loc) · 3.29 KB
/
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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/* background color = #1e1e2a */
/* graph color = #27293d */
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body{
margin-top: 50px;
background-color: #1e1e2a;
font-family: 'Poppins', sans-serif;
}
/*
============================================= IDs ============================================================
*/
#chart-header{
padding: 15px 15px 0;
background-color: rgba(0, 0, 0, 0);
}
#chart-1, #chart-brazil{
margin-right: 100px;
}
#recuperados-card{
border-top: 2px solid lightskyblue ;
}
#obitos-card{
border-top: 2px solid lightcoral ;
}
#confirmados-card{
border-top: 2px solid lightgreen;
}
#recuperados-card:hover{
border-bottom: 2px solid lightskyblue ;
border-right: 2px solid lightskyblue;
}
#obitos-card:hover{
border-bottom: 2px solid lightcoral ;
border-right: 2px solid lightcoral;
}
#confirmados-card:hover{
border-bottom: 2px solid rgb(144, 238, 144);
border-right: 2px solid lightgreen;
}
/*
============================================= Classes ====================================================
*/
.navbar{
background-color: #27293d;
border-bottom: 2px solid #dd4ecc;
}
.value-card{
border-top: 2px solid #dd4ecc ;
border-radius: 10px;
background-color: #27293d;
box-shadow: rgba(110, 110, 110, 0.8);
margin-top: 25px;
min-height: 170px;
text-align: center;
}
.value-card:hover{
border-bottom: 2px solid #dd4ecc ;
border-right: 2px solid #dd4ecc;
}
.value-card h2{
color: white;
border-bottom: solid 2px grey;
}
.value-card h3{
margin: 20px 0px;
text-align: center;
color: rgb(190, 190, 190);
}
.value-card:hover, .info-box:hover, .chart-box:hover{
transition: 0.3s;
cursor: default;
box-shadow: 2px 2px 2px 2px rgba(150, 150, 150, 0.3);
}
.card-title {
margin-left: 40px;
}
.info-box{
color: white;
border-radius: 10px;
margin: 50px 40px ;
background-color: #27293d;
box-shadow: rgba(110, 110, 110, 0.8);
max-height: 300px;
}
.info-box h2{
margin-top: 10px;
text-align: center;
padding-bottom: 5px;
border-bottom: solid 1px rgba(110, 110, 110, 0.8);
}
.chart-box{
border-radius: 10px;
margin: 50px 0px;
background-color: #27293d;
box-shadow: rgba(110, 110, 110, 0.8);
padding: 0px 10px 10px 30px;
}
.chart-box h2, .chart-box-brazil h2 {
color:white;
font-weight: 100;
margin: 0 0 10 0px;
}
.chart-box h3, .chart-box-brazil h3 {
color:rgb(167, 164, 164);
font-weight: 100;
margin: 0;
}
/*
============================================= ex ====================================================
*/
.corp {
color : white;
}
/*
============================================ Maps ===================================================
*/
#mapid {
height: 450px;
}
.map-rendered {
display: flex;
justify-content: center;
}
.info {
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.info p {
font-weight: bold;
margin: 0 0 5px;
color: black;
}