-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (37 loc) · 718 Bytes
/
style.css
File metadata and controls
41 lines (37 loc) · 718 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
body {
font-family:Serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
text-align: center;
min-width: 20rem;
}
div {
box-shadow: 0 0 20px rgba(54, 229, 210, 0.32);
padding: 10px;
border-radius: 5px;
margin: 10px auto;
width: 80%;
background-color: #ffffff;
text-align: left;
}
table {
border: 2px solid;
border-collapse: collapse;
width: 100%;
text-align: center;
font-size: medium;
margin: 0 auto;
max-width: 800px;
box-shadow: 0 0 20px rgba(54, 229, 210, 0.32);
}
thead th {
background-color: #3498db;
color: #fff;
font-weight: bold;
padding: 7px;
text-align: center;
}
tbody td {
padding: 5px;
}