-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (44 loc) · 695 Bytes
/
Copy pathstyle.css
File metadata and controls
48 lines (44 loc) · 695 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
body {
margin: 0;
}
table {
border-collapse: collapse;
border: 2px solid #222;
letter-spacing: 1px;
font-family: sans-serif;
}
table thead, table tfoot {
background-color: #3d2c18;
color: #fff;
}
table tbody {
background-color: #f1dfb9;
color: #3d2c18;
}
table th, table td {
border: 1px solid #111;
}
table td {
text-align: center;
}
table img {
vertical-align: middle;
}
.container {
position: relative;
text-align: center;
background-color: #202828;
padding: 5px 10px;
}
.id {
position: absolute;
bottom: 0%;
left: 50%;
transform: translate(-50%, 0%);
font-size: 0.6em;
background-color: #3d2c18;
color: #fff;
}
.name {
font-size: 1.2em;
}