-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.css
More file actions
43 lines (40 loc) · 1.06 KB
/
Copy pathsidebar.css
File metadata and controls
43 lines (40 loc) · 1.06 KB
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
#sidebar{
position: absolute;
display: inline-flex;
flex-direction: column;
top: var(--overlay-padding);
left: var(--overlay-padding);
bottom: var(--overlay-padding);
color: var(--clr-text);
pointer-events: none;
justify-content: space-between;
}
#sidebar > *{
pointer-events: all;
backdrop-filter: blur(var(--ui-blur));
display: inline-block;
background-color: var(--ui-bg);
width: fit-content;
box-shadow: var(--ui-shadow);
position: relative;
}
#sidebar > *:hover, #sidebar > *:active, #sidebar > *:focus-visible{
backdrop-filter: blur(var(--ui-blur-hover));
box-shadow: var(--ui-shadow-hover);
scale: 1.1;
background-color: var(--ui-bg-hover);
}
#sidebar > *:not(input):active{
transition: var(--transition-duration-button);
}
#note-title{
border: none;
field-sizing: content;
max-width: 15rem;
scale: 1 !important;
}
#tools, #statusbar {
border-radius: calc(var(--ui-icon-roundness) + var(--ui-icon-padding));
overflow: hidden;
padding: var(--ui-icon-padding);
}