-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile.css
More file actions
41 lines (36 loc) · 773 Bytes
/
mobile.css
File metadata and controls
41 lines (36 loc) · 773 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
@media screen and (max-width:799px) {
/* #header
{
display:flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
} */
#navbar
{
display:flex;
flex-direction: column;
/* justify-content: center;
align-items: center; */
justify-content: flex-start;
align-items: flex-start;
/* top:0;
right:-300px;
height: 100vh;
width:300px; */
box-shadow: 0px 40px 60px black;
/* padding:80px 0 0 40px; */
}
#navbar li {
margin-bottom: 25px;
}
#mobile{
display:flex;
align-items: center;
}
@media screen and (min-width:768px)
{
}
@media screen and (min-width:1168px) {
}
}