summaryrefslogtreecommitdiff
path: root/front/src/Emelents/Elements.css
blob: 0b67108e05af1490e536d73881bb12dc33ee4c08 (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
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
.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;
}

.SidebarContents > h1 {
    color: var(--colorscheme-gray);
    text-align: center;
    text-transform: uppercase;
}

.ContentsList {
    padding-left: 20px;
    color: var(--colorscheme-gray);
}

.ContentsList > li > span {
    display: flex;
}

.ContentsList > li > span > span {
    flex-grow: 1;
    font-family: "Rubik Dirt", system-ui;
    color: var(--colorscheme-gray);
    font-style: italic;
    overflow: hidden;
}

.ContentsList > li::marker {
    color: var(--colorscheme-gray);
}

.ContentsList > li > span > a {
    font-style: italic;
    color: var(--colorscheme-gray);
}