-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (73 loc) · 1.21 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
*{
font-family: "Kanit", sans-serif;
}
.form {
z-index: 10;
position: absolute;
margin-left: 65rem;
margin-top: 25%;
font-family: "Kanit", sans-serif;
font-size: 1.2rem;
position: fixed;
background-color: rgb(0, 0, 0, 0.5);
color: white;
padding: 12px;
border-radius: 15px;
}
.container{
width: 50%;
background-color: rgb(47, 47, 47);
color: white;
padding: 1rem;
margin-bottom: 30px;
border-radius: 15px;
}
.form label:hover{
color: gold;
transition: 0.2s;
}
.form input[type='radio']:hover{
cursor: pointer;
}
.btn{
color: whitesmoke;
}
#myTable{
width: 60%;
margin: 0 auto;
margin-bottom: 10px;
background-color: rgb(36, 124, 255);
text-align: center;
color: white;
}
tr th {
font-size: 20px;
}
tr:nth-child(even){
background-color: #76adff;
}
.citYear-dropdown{
display: flex;
}
.more-information{
font-family: "Kanit", sans-serif;
font-weight: bold;
width: fit-content;
margin: 0 auto;
animation: 2s fadeIn;
animation-fill-mode: forwards;
visibility: hidden;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
visibility: visible;
opacity: 1;
}
}
.more-information:hover{
color: rebeccapurple;
transition: 0.5s linear;
}