-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (44 loc) · 860 Bytes
/
style.css
File metadata and controls
51 lines (44 loc) · 860 Bytes
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
table {
border: 2px solid #9d478a;
border-collapse: collapse;
width: 110%;
}
th, td {
text-align: Center;
padding: 8px;
}
tr:nth-child(even) {
background-color: #cbc6c6
}
tr:nth-child(odd){
background-color: rgb(249, 250, 244);
}
th {
background-color: #9d478a;
color: white;
}
td:hover{
background-color: rgb(196, 207, 219);
}
th:hover{
background-color: #96227d;
}
.button {
position: relative;
text-align: center;
padding: 20px;
border: 4px solid rgb(224, 81, 45);
background: rgba(212, 162, 68, 0.5);
color: rgb(14, 12, 13);
outline: none;
border-radius: 30px;
font-size: 20px;
width: 230px;
}
.button:hover {
color: black;
background: white;
}
body{
background-color: rgb(239, 210, 236);
}