blob: eb3c55835daf318211d51d5e5ec532e9e044f5ba (
plain)
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
|
.Sidebar {
--width: 300px;
height: 100%;
min-width: var(--width);
max-width: var(--width);
min-height: 1000px;
background-color: var(--colorscheme-white);
border: 2px solid var(--colorscheme-gray);
color: var(--colorscheme-gray);
background: var(--colorscheme-white);
background-image: radial-gradient(var(--colorscheme-gray) 1px, transparent 0);
background-size: 4px 4px;
}
.Topbar {
text-transform: uppercase;
display: flex;
flex-direction: column;
}
.Topbar > h1 {
margin-bottom: 0px;
}
.TopbarContents {
border-top: 2px solid var(--colorscheme-black);
display: flex;
}
.TopbarContents > h2 {
--width: 280px;
min-width: var(--width);
max-width: var(--width);
min-height: 30px;
padding: 5px;
margin: 0px;
background-color: var(--colorscheme-black);
color: var(--colorscheme-white);
text-align: center;
}
.SidebarContents {
--width: 260px;
min-width: var(--width);
max-width: var(--width);
background-color: var(--colorscheme-white);
color: var(--colorscheme-gray);
margin: 20px;
text-transform: uppercase;
}
.SidebarContents > h1 {
color: var(--colorscheme-gray);
text-align: center;
}
|