-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
108 lines (98 loc) · 1.78 KB
/
styles.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
body {
margin:0;
padding:0;
overflow-x:hidden;
}
.main-container {
width:100%;
height:105vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
color:white;
background-color:#2d2d2d;
}
.data-div {
width:100%;
height:100%;
display:flex;
flex-direction:column;
align-items:center;
color:white;
background-color:#2d2d2d;
display:none;
}
h1, h2 {
font-family: "Open Sans Pro", sans-serif;
}
h2 {
font-size:16px;
}
.sub-title {
text-align:center;
margin:10px;
font-family: "Open Sans Pro", sans-serif;
}
.form {
width:50%;
height:300px;
background-color:#404040;
border-radius:25px 25px 25px 25px;
margin-top:10px;
}
@media screen and (max-width:850px) {
.form {
width:80%;
}
}
.form-items {
width:100%;
height:100%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}
input {
border-bottom:2px solid black;
width:80%;
border-top:none;
border-right:none;
border-left:none;
background:transparent;
color:white;
font-size:18px;
font-family: "Roboto Condensed", sans-serif;
}
input[type = "text"] {
padding-left:10px;
}
input, button {
margin:40px;
outline:none;
}
button {
width:80%;
height:50px;
background-color:#242424;
color:white;
border:2px solid black;
font-size:24px;
cursor:pointer;
font-family: "Roboto Condensed", sans-serif;
}
.compare-title {
text-align:center;
}
.recov, .deaths {
font-family: "Roboto Condensed", sans-serif;
cursor:pointer;
}
.live {
display:inline-block;
}
.no-chart {
display:none;
text-align:center;
}