-
Notifications
You must be signed in to change notification settings - Fork 0
/
CovidData.css
54 lines (50 loc) · 1.16 KB
/
CovidData.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
body {
background-color: rgb(102, 226, 102);
}
.covidData {
background-color: green;
width: 30%;
margin: auto;
margin-top: 15px;
border-radius: 6px;
padding: 10px;
}
/* input stylings */
.covidData__form {
padding: 10px;
margin: 20px;
}
.covidData__input input {
width: 400px;
height: 50px;
text-align: center;
font-size: 25px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.covidData__input button {
width: 80px;
height: 50px;
margin-top: 10px;
background-color: black;
color: white;
font-size: 20px;
border-radius: 10px;
border: none;
box-shadow: 5px 5px 5px rgb(71, 67, 67);
cursor: pointer;
}
/* detail stylings */
.covidData__country__info {
font-size: 20px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
width: 500px;
margin-left: auto;
margin-right: auto;
height: auto;
padding-left: 10px;
background-color: white;
margin-top: 20px;
padding: 2px;
text-shadow: 1px 1px 1px rgb(71, 67, 67);
box-shadow: 5px 5px 5px rgb(71, 67, 67);
}