forked from HENRYMARTIN5/Clarity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
editrv2.css
81 lines (70 loc) · 1.32 KB
/
editrv2.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
/* Abandon hope, all ye who enter here */
body {
background: #1d1b31;
padding: 0px;
margin: 0px;
width: 100%;
height: 100%;
overflow: hidden;
}
html {
padding: 0px;
margin: 0px;
width: 100%;
height: 100%;
}
* {
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#editrCanvas {
width: 100%;
height: 100%;
image-rendering: pixelated;
}
#tileSelectBar {
position:absolute;
bottom: 0px;
left: 0px;
height: 8%;
width: 100%;
padding-top: 0.7vh;
padding-left: 1vh;
padding-right: 1vh;
padding-bottom: 1vh;
background-color: rgba(73, 73, 73, 0.514);
z-index: 999999;
backdrop-filter: blur(20px);
border-top: 0.4vh solid rgb(54, 54, 54);
}
.unselected {
opacity: 0.5;
}
img {
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
user-drag: none;
}
.tileOption {
display: inline-block;
height: 6vh;
image-rendering: pixelated;
}
.tileOption.unselected:hover {
opacity: 1;
}
.tileOption:not(.unselected) {
/* Add a nice little border to the tile */
border: 0.2vh solid rgb(43, 43, 43);
}
#tooltip {
position: absolute;
bottom: 9%;
left: 1vh;
color: white;
}