-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (37 loc) · 741 Bytes
/
style.css
File metadata and controls
38 lines (37 loc) · 741 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
list-style: none;
color: #fff;
}
body{
background-color: #111;
}
.side_bar{
background-color: #fff;
width: 15dvw;
height: 50dvw;
border-radius: 0 10px 10px 0;
padding: 20px;
display: flex;
justify-content: space-between;
transform: translateX(-80%);
transition: all 0.3s ease-in-out;
}
.side_bar .hum_burger span{
display: block;
width: 20px;
height: 3px;
margin: 3px;
background-color: #000;
cursor: pointer;
}
.side_bar .content h3{
color: #000;
margin: 20px 0;
}
.hum_burger span:nth-child(1){
transform: rotateX('120deg');
}