-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.css
80 lines (68 loc) · 1.38 KB
/
homepage.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
body {
background-color: white;
font-family: 'Calibri', sans-serif;
}
header {
background-color: #98a5aa;
/* border: rgb(40, 192, 243) 2px solid; */
padding: 10px 15px 10px 15px;
font-weight: 600;
font-size: 28px;
margin-bottom: 10px;
text-align: center;
border-radius: 10px;
color: white;
}
#buttons {
float: right;
padding: 0px 1px 10px 0px;
}
button {
width: 30px;
height: 30px;
border-radius: 50px;
border: 2px solid #98a5aa;
background-color: #d3dde0;
width: 30px;
height: 30px;
}
button:hover{
background-color: #98a5aa;
color: white;
}
button:active{
background-color: rgb(40, 192, 243);
}
button:focus{
outline: none;
}
table {
background-color: #d3dde0;
border: white 1px solid;
border-collapse: collapse;
width: 100%;
border-radius: 10px;
}
table th {
border: white 1px solid;
padding: 5px;
text-align: center;
/* background-color: rgb(40, 192, 243); */
background-color: #98a5aa;
color: white;
}
table th:first-child {
border-top-left-radius: 10px;
}
table th:last-child {
border-top-right-radius: 10px;
}
table td {
border: white 1px solid;
padding: 5px;
text-align: center;
}
table tr:hover {
background-color: #98a5aa;
color: white;
}