We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 301f142 commit f102b83Copy full SHA for f102b83
site/assets/style.css
@@ -0,0 +1,42 @@
1
+body {
2
+ margin: 0;
3
+ font-family: 'Segoe UI', sans-serif;
4
+}
5
+
6
+.wrapper {
7
+ display: flex;
8
+ height: 100vh;
9
10
11
+.sidebar {
12
+ width: 220px;
13
+ background-color: #1e1e2f;
14
+ color: white;
15
+ padding: 20px;
16
+ transition: transform 0.3s ease;
17
+ overflow-y: auto;
18
19
20
+.sidebar.hidden {
21
+ transform: translateX(-220px);
22
23
24
+.content {
25
+ flex-grow: 1;
26
27
+ background-color: #f8f9fa;
28
29
30
31
+.toggle-btn {
32
+ position: fixed;
33
+ top: 10px;
34
+ left: 10px;
35
36
37
+ border: none;
38
+ padding: 10px 15px;
39
+ cursor: pointer;
40
+ z-index: 1000;
41
+ border-radius: 5px;
42
0 commit comments