-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathApp.css
83 lines (80 loc) · 1.38 KB
/
App.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
:root {
--accent-purple: rgb(125, 115, 231);
--darker-purple: rgb(95, 85, 205);
--select-yellow: #ffc52f;
--background-dark-blue: #15171b;
--background-dark-gray: #212326;
--background-light-gray: #2f3136;
--top-nav-height: 64px;
--sidebar-width: 300px;
--divider-gray: rgba(255, 255, 255, 0.12);
user-select: none;
-webkit-user-select: none;
cursor: default;
font: "Roboto";
}
input[type="text"] {
user-select: text;
}
html {
touch-action: manipulation;
overflow: hidden;
}
* {
font-size: 1rem;
}
*::-webkit-scrollbar {
width: 8px;
height: 8px;
}
*::-webkit-scrollbar-track {
background: transparent;
border-radius: 4px;
}
*::-webkit-scrollbar-thumb {
background: var(--select-yellow);
width: 8px;
height: 8px;
border-radius: 4px;
}
h1 {
font-size: 2.2rem;
}
h2 {
font-size: 1.6rem;
}
h3 {
font-size: 1.3rem;
}
.App {
display: flex;
flex-direction: column;
height: 100vh;
width: 100vw;
overflow: hidden;
min-width: 0;
min-height: 0;
position: fixed;
}
.Page {
background: var(--background-dark-blue);
width: 100%;
flex-grow: 1;
display: flex;
flex-direction: column;
flex: 1;
min-height: 0;
min-width: 0;
}
.Panel {
position: absolute;
background: var(--background-dark-blue);
width: 100%;
flex-grow: 1;
display: flex;
flex-direction: column;
flex: 1;
min-height: 0;
min-width: 0;
height: calc(100vh);
}