-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (38 loc) · 690 Bytes
/
style.css
File metadata and controls
43 lines (38 loc) · 690 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
h1 {
color: blue;
text-align: center;
}
table {
border: 2px solid black;
height: auto;
width: 250px;
padding: 10px;
border-radius: 10px;
background-color: yellow;
margin-left: 505px;
text-align: center;
margin-bottom: 15px;
}
thead,th {
color: blue;
background-color: white;
height: 25px;
border: 2px solid black;
border-radius: 20px;
width: 60px;
}
th:hover{
background-color: rgb(255, 4, 0);
color: aliceblue;
}
#addbtn {
padding: 8px;
width: 150px;
border-radius: 20px;
margin-left: 550px;
background-color: antiquewhite;
}
#addbtn:hover {
color: white;
background-color: red;
}