This repository was archived by the owner on Aug 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (103 loc) · 2.17 KB
/
style.css
File metadata and controls
118 lines (103 loc) · 2.17 KB
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
:root {
--light-blue: #375fbb !important;
--light-green: #28dc46 !important;
--light-red: #d82222 !important;
}
.ui-inventory-items {
background-color: var(--light-blue) !important;
border-radius: 1.2vw !important;
}
.ui-inventory-line {
background-color: transparent !important;
}
.inventory-item {
background-color: var(--background) !important;
border-radius: 1.2vw !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
.inventory-item img {
width: 2.8vw !important;
height: 2.8vw !important;
}
.cuicomponent {
position: absolute;
font-size: 2vmin;
font-family: 'Nunito', 'Trebuchet MS', 'Lucida Sans', Arial;
}
.currentlayer-info {
top: 1vmin;
left: 1vmin;
color: #fff;
background-color: var(--accent-color);
padding: 1vmin;
border-radius: 1vmin;
}
.rs-main {
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.rs-description {
left: 50%;
right: 50%;
top: 10vh;
transform: translate(-50%, -50%);
width: 40vw;
height: 15vh;
text-align: left;
outline: none;
border-radius: 2vmin;
padding: 2vmin;
border: none;
background-color: var(--blue);
color: white;
resize: none;
font-size: 1.5vmin;
}
.rs-description::placeholder {
color: darkgray;
}
.rs-buttons {
left: 50%;
right: 50%;
top: 25vh;
transform: translate(-50%, -50%);
width: calc(40vw + 2vmin);
height: 4vh;
padding: 2vmin 1vmin 2vmin 1vmin;
text-align: left;
outline: none;
border-radius: 2vmin;
background-color: var(--blue);
color: white;
}
.rs-button {
height: 4vh;
width: min-content;
border: none;
border-radius: 1vmin;
background-color: var(--light-blue);
position: relative;
margin: 0 1vmin 0 1vmin;
outline: none;
cursor: pointer;
}
.rs-button:active {
filter: brightness(0.8);
}
.rs-delete {
background-color: var(--light-red);
}
.rs-color {
background-color: var(--light-green);
}
* {
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}