-
Notifications
You must be signed in to change notification settings - Fork 4
/
doclog.css
83 lines (68 loc) · 1.15 KB
/
doclog.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
body {
font-family: sans-serif;
margin: 1rem;
margin-top: auto;
}
.mainContent {
display: grid;
grid-template-columns: 2fr 6fr;
grid-column-gap: 20px;
}
nav {
max-width: calc(80rem / 6 * 1.5);
word-wrap: break-word;
}
main {
max-width: calc(80rem / 6 * 5);
}
.moduleDescription {
margin: 2rem;
}
.predicates{
margin: 1rem;
}
.predicate > h4 {
background-color: #00007f;
color: white;
padding-left: 10px;
}
.predicate > div {
margin: 0.5rem;
}
.navlist {
list-style-type: none;
}
.mainContent > nav > h4 {
padding-left: 1.5rem;
}
footer {
text-align: center;
}
.topbar {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: solid #00007f 10px;
min-height: 4rem;
}
.topbarLink {
text-decoration: none;
color: black;
font-size: 2rem;
font-weight: bold;
}
table {
border: 2px solid #00007F;
border-radius: 0.25rem;
border-collapse: collapse;
}
tbody tr:nth-child(odd) {
background-color: #DFDFFF;
}
tbody tr:nth-child(even) {
background-color: #EFEFFF;
}
td {
padding-left: 10px;
padding-right: 10px;
}