blob: 25b71a5793341456eda268e55fecf2668c2c91fa (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
* {
box-sizing: border-box;
}
body {
color: #999;
background-color: #000;
width: 90%;
max-width: 1000px;
margin: 20px auto;
font-size: 16px;
}
header {
margin: auto;
}
header h1 {
display: inline;
margin: 1px;
}
header h2 {
margin: 1px;
}
main {
display: flex;
flex-direction: column;
line-height: 1.6;
}
main > div {
margin: 5px;
}
footer {
font-size: 0.8rem;
text-align: center;
opacity: 0.7;
}
a, a:visited {
color: #0077aa;
}
a:hover {
color: #00aaee;
}
pre {
max-width: 100%;
overflow: auto;
background: #050505;
padding: 10px;
border: 1px dashed #999;
}
.header-container {
display: flex;
flex-direction: column;
}
.esquizo {
width: 100px;
display: inline;
}
.content {
padding: 5px;
flex-grow: 1;
overflow: auto;
border: dashed 1px #999;
background: #050505;
}
.bottom-align {
display: flex;
flex-direction: column;
justify-content: flex-end;
}
.image-container {
text-align: center;
}
.image-container > img {
display: inline;
max-width: 100%;
}
.buttons {
margin: 5px 0px;
}
.buttons ul li {
margin: 2px 0px;
}
@media (min-width: 1000px) {
.header-container {
justify-content: center;
flex-direction: row;
}
main {
flex-direction: row;
}
}
|