forked from ItzCog/1340-cheat-sheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (60 loc) · 1.04 KB
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.page {
height: 297mm;
width: 210mm;
/*border: 4px solid #111;*/
font-family: sans-serif;
display: flex;
gap: 1px;
align-items: center;
flex-direction: column;
padding-top: 0.5cm;
}
.main-title {
font-size: 18px;
margin-top: 8px;
}
.small-text {
font-weight: 500;
font-style: italic;
font-size: 8px;
}
.sub-section {
margin: 2px 8px;
align-self: stretch;
/*border: 2px solid #111;*/
/*background-color: #666;*/
display: flex;
flex-direction: column;
gap: 1px;
align-items: start;
padding: 4px 12px 6px 12px;
}
.sub-header {
margin: 0 6px 0 6px;
font-weight: 600;
font-size: 12px;
}
.section-list {
list-style: none;
font-size: 8px;
margin-left: 20px;
text-indent: -4px;
line-height: 1.1;
}
.indented {
margin-left: 6px;
}
.arg {
text-decoration: underline;
}
.opt-arg {
text-decoration: wavy underline;
}
.extra-margin-top {
margin-top: 1.5cm;
}