summaryrefslogtreecommitdiff
path: root/static/style.css
blob: 5dfce6dd67737b11c4f507a2e851a3532f46815f (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
* {
    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;
}

.content {
	padding: 5px;
	flex-grow: 1;
	overflow: auto;
	border: dashed 1px #999;
	background: #050505;
}

.navbar {
}

.navbar ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.navbar li a {
	display: block;
	color: #999;
	text-decoration: none;
	border: dashed 1px;
	text-align: center;
	padding: 5px 10px;
}

.navbar li a:hover {
	display: block;
	color: #000;
	background-color: #999;
}

.bottom-align { 
	display: flex; 
	flex-direction: column; 
	justify-content: flex-end; 
}

.esquizo {
	width: 100px;
	display: inline;
}

@media (min-width: 640px) {
    .header-container {
		justify-content: center;
        flex-direction: row;
    }

	.navbar ul {
		display: flex;
		flex-direction: column;
		gap: 0px;
		width: 125px;
	}

	main {
		flex-direction: row;
	}
}