blob: 3e86557694c09d3e0693d1c4863a594aa635cc28 (
plain) (
blame)
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
|
#folder {
/*position: absolute;
left: 50%;
transform: translateX(-50%);*/
}
#tabs {
display: flex;
flex-direction: row;
align-items: flex-end;
height: 4rem;
}
#tabs>.folder-tab:not(:first-child) {
margin-left: -5px;
}
.folder-tab {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
position: relative;
overflow-x: hidden;
height: 2.5rem;
background-color: var(--ns-bg-dark-100);
border-color: var(--ns-primary);
color: var(--ns-primary);
border-style: solid;
border-width: 1px 1px 0 1px;
}
.folder-tab:not(:first-child) {
margin-block-start: auto;
width: 4rem;
}
.selected-tab {
height: 3rem;
background-color: var(--ns-primary);
color: var(--offwhite);
}
.hover-tab {
height: 3.2rem;
}
.selected-tab,
.hover-tab {
width: fit-content !important;
}
.tab-link {
color: var(--offwhite) !important;
text-decoration: none !important;
cursor: pointer;
}
.tab-link:active {
text-decoration: underline !important;
}
.selected-tab {
background-color: var(--ns-primary);
}
#searchbar {
height: 2.5rem;
background-color: var(--ns-bg-dark-100);
border-bottom: 1px solid var(--ns-primary);
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: 100%;
}
.collapse-horizontal {
white-space: nowrap;
height: 2.5rem;
overflow-x: hidden;
}
#search-options {
margin-left: auto;
margin-top: 7px;
display: flex;
flex-direction: row;
align-items: center;
}
#selected-content {
background-color: var(--ns-bg-dark-50);
width: 100%;
height: 36rem;
/*backdrop-filter: blur(2px);*/
border-color: var(--ns-primary);
border-style: solid;
border-width: 1px 1px 1px 1px;
border-top-right-radius: 4px;
}
#footer {
display: flex;
flex-direction: row;
justify-content: center;
}
.bottom-button {
font-size: large;
position: relative;
background-color: var(--ns-primary);
width: 10rem;
height: 2.3rem;
border-color: var(--ns-primary);
border-style: solid;
border-width: 0px 1px 1px 1px;
}
.rounded-bottom {
border-top-right-radius: 0;
border-top-left-radius: 0;
}
|