-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (70 loc) · 976 Bytes
/
style.css
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* Mostly copied from sanitize.scss */
html {
cursor: default;
line-height: 1.15;
font-size: 1.375em;
overflow-y: scroll;
}
body {
margin: 0;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
a {
background-color: transparent;
}
b, strong {
font-weight: bolder;
}
small {
font-size: 80%;
}
img {
border-style: none;
}
/* Custom */
body > div {
max-width: 32rem;
padding: 0 1.5rem 0 1.5rem;
margin-left: auto;
margin-right: auto;
}
table {
width: 100%;
}
.fixed-layout {
table-layout: fixed;
}
th {
padding: 2px 5px;
cursor: pointer; /* indicate clickability for sort */
}
td {
padding: 2px 5px;
vertical-align: top;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
.center {
text-align: center;
}
.small {
font-size: 70%;
}
.next {
text-align: right;
}
.mainimg {
max-width: 35%;
float: right;
margin-left: 1rem;
margin-bottom: 1rem;
}
.extraimg {
width: 100%;
display: block;
margin-top: 1rem;
}