-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (80 loc) · 1.57 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
87
@font-face {
font-family: 'Minecraft-Regular';
src:url('font/Minecraft-Regular.ttf.woff') format('woff'),
url('font/Minecraft-Regular.ttf.svg#Minecraft-Regular') format('svg'),
url('font/Minecraft-Regular.ttf.eot'),
url('font/Minecraft-Regular.ttf.eot?#iefix') format('embedded-opentype');
font-weight: normal;
font-style: normal;
}
body {
background-color: black;
color: white;
font-size: 15pt;
font-family: arial;
}
.i {
display: inline-block;
width: 50px; height: 50px;
border: 1px solid black;
vertical-align: middle;
margin-right: 2px;
box-sizing: border-box;
}
.input {
height: 50px;
box-sizing: border-box;
vertical-align: middle;
font-size: 30px;
padding: 0 10px;
}
ul {
padding: 0;
margin: 20px 0;
}
li {
margin: 2px 0;
list-style: none;
}
div,#copy,#export,#import{
min-height: 50px;
line-height: 50px;
border: 1px solid white;
margin: 20px 0;
padding: 0 10px;
box-sizing: border-box;
}
#preview-container{
font-family: 'Minecraft-Regular';
border: 0;
padding:2px;
margin-bottom:5px;
background-color: rgba(0,0,0,0.5);
}
#preview-background{
background-image: url('images/2020-12-28_22.41.19.jpg');
background-size: cover;
}
#command,#preview{
white-space:pre;
}
.formatbox,#command-row,#options-container{
display: flex;
flex-direction: row;
border: 0px;
margin: 0px;
padding:0px;
}
.formatbox label{
margin-right:0.5em;
}
.flex-grow-1{
flex-grow: 1;
}
#command-row{
text-justify: distribute;
}
.disabled{
opacity: 0.25;
pointer-events: none;
}