-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
68 lines (58 loc) · 1007 Bytes
/
main.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
:root {
font-family: sans-serif;
}
body {
margin: 0;
padding: 0;
overflow: hidden;
display: flex;
flex-direction: column;
height: 100vh;
}
#mandelbrot-canvas {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
}
#settings {
background: rgba(255, 255, 255, 0.75);
padding: 0.5em 1em;
backdrop-filter: blur(0.1em);
border-top-left-radius: 0.5em;
border-bottom-left-radius: 0.5em;
}
#settings.closed {
background: transparent;
}
.settings {
display: flex;
flex-direction: column;
gap: 0.5em;
}
.settings .title {
margin: 0;
}
.wrapper {
flex: 1;
display: flex;
}
.empty {
flex: 1;
}
.show-sidebar-btn {
cursor: pointer;
align-self: flex-start;
margin-top: auto;
border: none;
transition: all 250ms ease-in-out;
border-radius: 1rem;
display: flex;
align-items: center;
justify-content: center;
}
.show-sidebar-btn:hover {
scale: 1.1;
}