-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (103 loc) · 2.07 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
:root{
--orange-theme: rgb(201, 76, 18);
--black-theme: rgb(37, 36, 36);
}
*{
box-sizing: border-box;
}
body{
margin: 0;
height: 100vh;
font-family: 'Montserrat', sans-serif;
color: #fff;
background-color: var(--black-theme);
background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url("corona1.jpg");
background-position: center;
background-size: cover;
}
.first{
color: var(--orange-theme);
}
#heading{
text-align: center;
margin: 2rem 0;
font-size: 2.5rem;
}
li{
list-style: none;
}
a{
color: var(--orange-theme);
}
.container{
max-width: 1100px;
margin: auto;
}
.country-input{
border: none;
border-bottom: 2px solid var(--orange-theme);
background-color: transparent;
color: #fff;
padding: 1rem;
font-size: 1.4rem;
display: block;
width: 40%;
margin : 2rem auto;
}
.country-input::placeholder{
color: rgb(184, 174, 174);
}
.btn{
padding: .6rem;
border-radius: 50px;
background-color: var(--orange-theme);
color: var(--black-theme);
font-size: 1rem;
font-weight: bolder;
cursor: pointer;
border: 1px solid var(--orange-theme);
display: block;
margin: 1rem auto;
width: 40%;
transition: all .2s ease-in-out;
}
.btn:hover{
/* box-shadow: | hor ver blur spread | inset| initial| inherit */
/* box-shadow: 3px 8px 10px rgba(160, 157, 157, 0.2); */
background: rgba(201, 76, 18, 0.61);
color: #dac7c7;
}
.country-input:focus,
.btn:focus{
outline: none;
}
.table{
background-color: #d3c6c6;
margin: 3rem auto;
padding: 1.5rem;
border-radius: 10px;
}
tr th{
padding: 1rem 2rem;
/* padding-bottom: 1.9rem; */
}
th,td{
color: black
;
padding: 10px;
text-align: center;
}
.second{
color: white;
margin: 0;
padding: 0;
border-radius: 5px;
box-shadow: aliceblue;
}
.nav-bar{
display: flex;
padding: 40px 120px;
}
.nav-logo img{
width: 130px;
}