blob: 06f0da6cf9952a35c9f4f94f5c4747e314f98053 (
plain)
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
|
.app {
}
.header {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
font-size: var(--font-xxl);
width: auto;
margin: auto;
margin-bottom: 10px;
}
.iconRow {
display: flex;
flex-flow: row nowrap;
align-items: center;
margin-bottom: -10px;
}
.iconRow h1 {
font-size: var(--font-xxl);
margin: 0;
}
.iconRow img {
width: auto;
height: 40px;
margin-right: 10px;
}
.header small {
font-style: italic;
font-size: var(--font-s);
font-weight: 400;
}
.error {
color: var(--red)
}
.editor {
margin-bottom: 40px;
}
.tutorial {}
.author .githubLink,
.author p {
display: flex;
flex-flow: row nowrap;
align-items: center;
margin: 5px 0;
}
.author svg {
height: 20px;
width: 20px;
margin-right: 10px;
}
|