Skip to content

Commit f102b83

Browse files
authored
Create style.css
1 parent 301f142 commit f102b83

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

site/assets/style.css

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
padding: 20px;
27+
background-color: #f8f9fa;
28+
overflow-y: auto;
29+
}
30+
31+
.toggle-btn {
32+
position: fixed;
33+
top: 10px;
34+
left: 10px;
35+
background-color: #1e1e2f;
36+
color: white;
37+
border: none;
38+
padding: 10px 15px;
39+
cursor: pointer;
40+
z-index: 1000;
41+
border-radius: 5px;
42+
}

0 commit comments

Comments
 (0)