-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle8.css
More file actions
57 lines (51 loc) · 872 Bytes
/
style8.css
File metadata and controls
57 lines (51 loc) · 872 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
52
53
54
55
56
57
body{
background-color: #d7d8d6;
}
table {
width:400px;
}
table, th,td {
text-align: center;
border: 1px solid black;
border-collapse: collapse;
margin: 30px;
margin-left: 43px;
}
th, td {
padding: 10px;
text-align: center;
}
table#t01 tr:nth-child(even) {
background-color: #eee;
}
table#t01 tr:nth-child(odd) {
background-color: #fff;
}
table#t01 th {
background-color: black;
color: white;
}
.details{
font-family: monospace;
font-weight:bolder;
display: block;
width: 350px;
margin: 20px;
margin-left: 65px;
padding: 8px;
border: 1px solid black;
}
h1{
text-decoration: underline;
align-content: center;
}
#btn{
border: 3px solid #d7d8d6;
border-radius: 10px;
width: 80px;
height: 30px;
}
#btn:hover{
cursor: pointer;
background-color: white;
}