-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (40 loc) · 890 Bytes
/
style.css
File metadata and controls
46 lines (40 loc) · 890 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
#table1 {
border-collapse: collapse;
width: 70%;
}
#table1 td,
#table1 th {
border: 3px solid rgb(80, 79, 79);
padding: 3px;
}
#table1 thead td,
#table1 thead th {
border: 3px solid rgb(184, 183, 183);
color: rgb(0, 0, 0);
background-color: rgb(184, 183, 183);
padding: 10px;
}
#table1 tbody th {
border: 3px solid rgb(48, 44, 44);
color: rgb(37, 36, 36);
background-color: rgb(184, 183, 183);
padding: 10px;
}
#table1 tbody td {
border: 2px solid rgb(48, 44, 44);
color: rgb(37, 36, 36);
background-color: #fff789;
padding: 10px;
}
#table1 tfoot th {
border: 3px solid rgb(48, 44, 44);
color: rgb(37, 36, 36);
background-color: rgb(184, 183, 183);
padding: 10px;
}
#table1 tfoot td {
border: 2px solid rgb(48, 44, 44);
color: rgb(37, 36, 36);
background-color: #8ed8f5;
padding: 10px;
}