blob: bef1dbd56faa4065a12b828e61d92dcb8dd58be8 (
plain) (
blame)
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
|
body {
margin: 0;
}
div#top-half {
background-color: #c6e3a4;
padding: 8px;
}
div#bottom-half {
padding: 12px;
}
div#container {
margin: 0 auto;
max-width: 600px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
div#logo {
width: 256px;
height: 256px;
margin: 0 auto;
pointer-events: none;
user-select: none;
}
div#content {
padding-bottom: 8px;
}
div#container h1 {
text-align: center;
font-weight: 500;
margin: 12px 0 0;
}
div#content p {
text-align: justify;
padding: 0 10px;
}
div#smallcontent p {
text-align: center;
}
.code-container-container {
margin: 24px;
}
.code-container {
text-align: left;
margin: 0 auto;
display: table;
background-color: #e8ebf4;
color: #000;
padding: 6px 14px;
border: 0px solid #e8ebf4;
border-radius: 4px;
}
.code {
font-family: 'Courier New', Courier, monospace;
font-size: inherit;
left: auto;
right: auto;
}
.code.shell:before {
content: "$ ";
}
|