-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSideMenu.css
More file actions
91 lines (74 loc) · 1.35 KB
/
SideMenu.css
File metadata and controls
91 lines (74 loc) · 1.35 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
* {
margin: 0px;
padding: 0px;
}
a {
list-style: none;
text-decoration: none;
}
#hide {
right: -13rem;
transition: 0.5s;
}
.SideMenuContainer {
height: 100%;
position: fixed;
top: 0;
}
.SideMenuWhite {
height: 100%;
width: 12rem;
float: right;
background-color: #fff;
}
.SideMenuHeadContainer {
width: 12rem;
height: 3.5rem;
border-bottom: 1px solid #D9D9D9;
background: #FFF;
}
.SideMenuHeadContainerMiddle {
width: 100%;
height: auto;
}
.SideMenuClose {
border: none;
background-color: transparent;
margin-top: 0.63rem;
margin-left: 0.75rem;
}
.SideMenuDetails {
width: 100%;
height: 2.25rem;
margin: 0.375rem 0;
border: 1px solid #fff;
border-radius: 0.25rem;
background: #FFF;
display: flex;
flex-direction: row;
align-items: center;
}
.SideMenuDetails:hover {
border: 1px solid #67C2B0;
}
.unclikeddetails{
border: none;
}
.SideMenuDetailsContainer {
display: flex;
flex-direction: column;
margin: 2.25rem 0.5rem 0 0.5rem;
width: auto;
height: auto;
background-color: transparent;
}
.SideMenuDetailsText {
color: #000;
font-size: 1rem;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.025rem;
white-space: nowrap;
word-wrap: nowrap;
}