-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathmy-theme.css
More file actions
69 lines (54 loc) · 930 Bytes
/
Copy pathmy-theme.css
File metadata and controls
69 lines (54 loc) · 930 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
/* @theme my-theme */
@import 'default';
section {
justify-content: start;
padding-top: 50px;
display: flex;
}
section.lead {
justify-content: center;
}
section.lead h1 {
font-size: 100px;
color: #09c;
text-align: center;
}
section.lead h2 {
font-size: 50px;
text-align: center;
}
section.lead h3 {
font-size: 30px;
text-align: center;
}
section.double ul {
column-count: 2;
}
li {
line-height: 1.2em;
}
li li {
font-size: 90%;
}
li li li {
font-size: 80%;
}
table {
font-size: 80%;
}
img {
vertical-align: text-top;
border-style: solid;
/* border-style: solid;
border-color: lightslategrey; */
}
img[alt~="side20"] {
float: right;
height: 100%;
margin-top: -20%;
}
.columns {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
}