forked from turboderp-org/exui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainmenu.css
67 lines (57 loc) · 1.28 KB
/
mainmenu.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
.mainmenu-main {
background-color: var(--background-color-menu);
display: flex;
flex-direction: column;
height: calc(100vh);
overflow-y: auto;
}
.mainmenu-spacer {
margin-top: auto;
}
.mainmenu {
background-color: var(--background-color-menu);
display: flex;
flex-direction: column;
width: 80px;
padding: 0px;
}
.mainmenu-page {
display: flex;
flex-grow: 1;
}
.mainmenu-button {
width: 80px;
min-width: 80px;
user-drag: none;
user-select: none;
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none;
display: flex;
flex-direction: column;
padding-bot: 10px;
height: 100px;
}
.mainmenu-button p {
margin: 0px;
display: flex;
justify-content: center;
font-size: var(--font-size-small);
font-weight: bold;
color: var(--textcolor-menu);
text-shadow: 0px 0px 0px #000000, 0px 5px 10px #0d0d0d80;
}
.mainmenu-button img {
margin: 0px;
display: flex;
justify-content: center;
text-shadow: 0px 0px 0px #000000, 0px 5px 10px #0d0d0d;
}
.mainmenu-button.active {
background-color: var(--background-color-body);
}
.mainmenu-button.inactive:hover {
filter: brightness(var(--hover-brightness));
cursor: pointer;
}