-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdrawer.css
More file actions
85 lines (85 loc) · 1.37 KB
/
drawer.css
File metadata and controls
85 lines (85 loc) · 1.37 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
@keyframes slide-in-top {
0% {
transform: translateY(-200px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
body {
margin: 0;
line-height: normal;
}
.popup-overlay {
display: flex;
flex-direction: column;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.contact-button3,
.generator-button3,
.home-button3,
.manager-button3 {
cursor: pointer;
border: 0;
padding: 0;
background-color: transparent;
position: relative;
font-size: 10.47px;
font-family: Roboto;
color: #005b97;
text-align: left;
display: inline-block;
width: 29px;
height: 12px;
flex-shrink: 0;
}
.contact-button3,
.generator-button3,
.manager-button3 {
color: #424242;
width: 47px;
}
.contact-button3,
.manager-button3 {
width: 42px;
}
.contact-button3 {
width: 37px;
}
.drawer-div,
.drawer-items-div {
display: flex;
padding: 10px;
box-sizing: border-box;
align-items: center;
}
.drawer-items-div {
flex: 1;
height: 192px;
flex-direction: column;
justify-content: space-between;
}
.drawer-div {
position: relative;
background-color: #fff;
width: 100%;
flex-direction: row;
justify-content: flex-start;
opacity: 0;
max-height: 90%;
overflow: auto;
}
.drawer-div.animate {
animation: 0.25s ease 0s 1 normal forwards slide-in-top;
}
@media screen and (max-width: 768px) {
.drawer-div {
width: 100%;
}
}