-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (68 loc) · 989 Bytes
/
style.css
File metadata and controls
79 lines (68 loc) · 989 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
body {
width:70ch;
margin:auto;
margin-top:50px
}
/* Header */
header {
display:flex;
align-items:center;
justify-content:space-between;
}
header h2 {
display:inline;
}
nav {
display:inline;
float:right;
}
/* Table */
table,th,td {
border-bottom:1px solid black;
border-collapse:collapse;
}
th,td {
vertical-align:top;
padding:5px;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
.flexth {
text-align: center;
font-weight: bold;
border-bottom:1px solid black;
}
.flextable {
display: flex;
flex-direction: column;
width: 100%;
}
.flexrow {
display: flex;
flex-direction: row;
width: 100%;
padding:5px;
border-bottom:1px solid black;
}
.flexrow:nth-child(even) {
background-color: #f2f2f2;
}
.flextd2 {
flex-basis: 20%;
}
.flextd8 {
flex-basis: 80%;
}
.flextdcol {
display: flex;
flex-direction: column;
}
.tcol-list-title {
text-decoration: underline;
}
ul {
padding-left: 16px;
margin-top: 5px;
margin-bottom: 12px;
}