-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (70 loc) · 1.19 KB
/
style.css
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
* {
margin: 0;
padding: 0;
outline: none;
text-decoration: none;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
body {
font-family: monospace;
color: white;
background-color: black;
margin: 10px;
}
pre.canvas {
display: inline-block;
margin: 0;
padding: 5px 0 5px 5px;
letter-spacing: 8px;
border: 1px solid gray;
}
.ui {
margin: 0 10px;
}
.ui .inventory {
display: flex;
}
.ui .log {
margin: 10px 0;
}
.options {
margin: 10px 0;
}
h2 {
margin: 10px 0 5px;
font-size: 16px;
}
/* Utils */
.flex {
display: flex;
}
.flex.row {
flex-direction: row;
}
.flex.column {
flex-direction: column;
}
.flex.center {
align-items: center;
justify-content: center;
}
.flex.h-center,
.flex.row.h-center,
.flex.column.v-center {
justify-content: center;
}
.flex.v-center,
.flex.row.v-center,
.flex.column.h-center {
align-items: center;
}
.dot {
min-width: 3px;
min-height: 3px;
margin: 0 8px;
border-radius: 50%;
background-color: white;
opacity: 0.4;
}