-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSidebar.css
More file actions
97 lines (82 loc) · 1.45 KB
/
Sidebar.css
File metadata and controls
97 lines (82 loc) · 1.45 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
.Sidebar{
height: 5%;
width: 100%;
background-color: #2F4050;
float: left;
display: flex;
align-items: center;
color: white;
}
.SidebarList{
height: auto;
padding: 0;
width: 100%;
}
.nav-menu-items{
width: 100%;
padding-inline-start: 0px;
}
.nav-menu-items .row{
position: relative;
height: 8%;
width: 100%;
list-style-type: none;
margin: 0%;
display: flex;
flex-direction: row;
color: white;
justify-content: normal;
align-items: center;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.nav-menu-items .row:hover {
cursor: pointer;
background-color: #293846;
width: 100%;
}
.nav-menu-items #active.row {
background-color: #293846;
}
.nav-menu {
z-index: 1;
background-color: #2F4050;
width: 250px;
height: 100vh;
display: flex;
justify-content: center;
position: fixed;
top: 0;
left: -100%;
transition: 850ms;
padding-top: 5%;
}
.nav-menu-items .row #icon {
flex: 30%;
display: grid;
place-items: center;
}
.nav-menu-items .row #title {
flex: 70%;
}
.nav-menu.active {
left: 0;
transition: 350ms;
}
.navbar-toggle {
height: 0%;
width: 100%;
list-style-type: none;
margin: 0%;
display: flex;
flex-direction: row;
color: white;
justify-content: center;
align-items: center;
}
.menu-bars {
margin-left: 2%;
margin-right: 90%;
margin-top: 0%;
font-size: 1rem;
background: none;
}