-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.css
52 lines (48 loc) · 883 Bytes
/
App.css
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
@import url('https://fonts.googleapis.com/css2?family=Manrope:[email protected]&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: "Manrope", sans-serif;
}
.sticky_header{
width: 100%;
height: 80px;
line-height: 80px;
position: sticky;
top: 0;
left: 0;
z-index: 9999;
background: white;
box-shadow: 3px 3px -8px #ddd;
}
@media only screen and (max-width: 768px){
.navigation{
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 100;
background-color: #00000084;
display: none;
}
.menu{
width: 15rem;
height: 100%;
position: absolute;
top: 0;
right:0;
background-color:#fff ;
z-index: 200;
flex-direction: column;
justify-content: center;
align-items: center;
line-height: 30px;
}
.show_menu{
display: block;
}
}