-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathside-menu_s.css
More file actions
52 lines (45 loc) · 837 Bytes
/
side-menu_s.css
File metadata and controls
52 lines (45 loc) · 837 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
.side-menu {
position: fixed;
top: 85;
left: -200px;
background-color: powderblue;
color: white;
width: 200px;
height: 100%;
transform: translate(0, 0);
transition: transform 300ms;
}
.side-menu.open {
box-shadow: 3px 1px 10px 0px rgba(0, 0, 0, 0.3);
transform: translate(200px, 0);
}
.side-menu-header {
display: flex;
align-items: center;
}
.side-menu-header h1 {
width: 50%;
padding-left: 10px;
margin: 5 0;
}
.side-menu-header button {
border: 0;
color: white;
font-size: 2rem;
background-color: powderblue;
margin-left: 20%;
padding: 0 0;
width: 30%;
height: 53px;
}
.side-menu-header button:hover {
background-color: rgb(150, 210, 218);
}
.side-menu-content {
margin-top: 15px;
font-size: 1.5rem;
margin-left: 25px;
}
.side-menu-content h:hover {
cursor: pointer;
}