-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (94 loc) · 1.76 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
@charset "UTF-8";
* {
box-sizing: border-box;
}
html, body {
margin: auto;
padding: 0;
display: flex;
flex-direction: row;
}
canvas {
display: block;
/*cursor: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' style='font-size: 24px'><text y='20'>✏️</text></svg>"), crosshair;*/
}
.ui {
display: flex;
flex-direction: column;
min-height: 450px;
height: 100%;
border: 2px solid #ccc;
border-radius: 5px;
margin: 10px;
padding: 10px;
}
.palette, .tools, .frames {
padding: 4px;
background-color: #ccc;
border-radius: 4px;
margin: 4px;
flex-wrap: wrap;
}
.palette {
display: grid;
grid-template-columns: repeat(10, auto);
}
button.mini {
width: 20px;
height: 15px;
display: block;
padding: 0;
border-radius: 0;
border: none;
margin: 2px;
box-sizing: border-box;
line-height: 22px;
text-align: center;
}
button.mini img {
width: 20px;
height: 15px;
}
button.mid {
width: 34px;
height: 34px;
padding: 0;
border: 0px;
border-radius: 4px;
margin: 2px;
font-size: 30px;
line-height: 34px;
text-align: center;
}
button.mid:active {
background-color: rgb(225, 225, 40);
}
button.mid.current {
background-color: rgb(158, 185, 188);
}
.row {
margin: 5px;
}
ul.key {
list-style: none;
position: relative;
padding: 6px 0 0 25px;
}
ul.key li {
line-height: 50px;
vertical-align: middle;
}
ul.key li:before {
background-position: right top, right bottom;
background-repeat: no-repeat, no-repeat;
background-size: 80%;
content: "";
width: 20px;
height: 30px;
position: absolute;
left: 0;
top: 15px;
}
li.arrow:before {
background-image: url(/assets/tiles/Block14.png), url(/assets/tiles/Block19.png);
}/*# sourceMappingURL=style.css.map */