-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.less
116 lines (98 loc) · 2.35 KB
/
index.less
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
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Yusei+Magic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Skranji&display=swap");
:root {
--selection-color: #b5d7ff;
--bg-color: #5ea8da;
--title-color: #4d84d9;
--text-color: black;
--dir-color: #4985b4;
--dir-text: black;
--settings-color: #3e4cfa;
--settings-text: black;
--settings-revert: #473bf0;
--settings-revert-text: black;
--settings-ok: #355aff;
--settings-ok-text: black;
--version-color: #3a5eff;
--version-text: black;
--version-accept: #5142ff;
--version-accept-text: black;
--version-reject: #463bbe;
--version-reject-text: black;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
user-select: none;
overflow-anchor: none;
}
html, body {
background-color: var(--bg-color);
overflow-x: hidden;
overflow-y: hidden;
height: 100%;
width: 100%;
}
body {
overflow-y: visible;
}
p {
margin-bottom: 0;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.app {
-webkit-app-region: no-drag;
animation: fadein 0.5s;
display: flex;
flex-direction: column;
overflow: visible;
width: 100%;
height: 100%;
}
::selection {
background-color: var(--selection-color);
color: white;
}
::-webkit-scrollbar {
width: 20px;
}
::-webkit-scrollbar-track {
background: #000000;
}
::-webkit-scrollbar-thumb {
background: #5a5a5a;
}
::-webkit-scrollbar-thumb:hover {
background: #303030;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input:focus, button:focus, select:focus {
outline: none;
}
img, p {
-webkit-user-drag: none;
}
img {
image-rendering: -webkit-optimize-contrast;
}
ul {
list-style-type: none;
}