forked from 3r1s-s/meo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
desktop.css
126 lines (108 loc) · 2.14 KB
/
desktop.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
html ::-webkit-scrollbar {
width: 0px;
}
body ::-webkit-scrollbar {
width: 12px;
}
body ::-webkit-scrollbar-track {
background: var(--background);
border-radius: 0px;
}
body ::-webkit-scrollbar-thumb {
background-color: var(--hov-accent-color);
border-radius: 25px;
border: 3px solid var(--accent-down);
}
.modal-button-s {
padding: 10px var(--button-padding);
overflow: hidden;
text-overflow: ellipsis;
box-sizing: border-box;
text-wrap: nowrap;
background: var(--modal-button-color);
border-radius: var(--border-radius);
font-size: 12px;
text-align: left;
}
.updt-inside {
display: flex;
gap: 10px;
align-items: center;
margin: var(--text-margin) 0;
}
.modal-button-s:hover {
background: var(--hov-modal-button-color);
}
.modal-button-s:active {
background: var(--modal-button-color);
}
.desktop .sidebar {
height: calc(100vh - 30px);
top: 30px;
}
.desktop .side {
height: calc(100vh - 30px);
top: 30px;
}
#main {
height: calc(100vh - 30px);
margin-top: 30px;
}
.launch {
height: calc(100vh - 30px);
}
.desktop .titlebar {
-webkit-app-region: drag;
height: 30px;
background: var(--background);
-webkit-user-select: none;
user-select: none;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 500;
margin-top: 1px;
}
.titlebar-button {
display: inline-flex;
justify-content: center;
align-items: center;
width: 30px;
height: 30px;
transition: background 75ms ease-in;
}
.titlebar-button:hover {
background: var(--accent-color);
cursor: pointer;
}
#titlebar-close:hover {
background: var(--red);
color: var(--color-on)
}
.titlebar-buttons {
transform: translateY(-1px);
display: flex;
justify-content: end;
-webkit-app-region: no-drag;
}
.titlebar-name {
margin-left: 10px;
font-size: 16px;
font-weight: bold;
}
.desktop .titlebar-back {
display: block;
height: 30px;
background: var(--background);
-webkit-user-select: none;
user-select: none;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
}