forked from github/dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmobile.css
77 lines (68 loc) · 1.23 KB
/
mobile.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
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
@media screen and (max-width:700px){
* {
margin: 0px;
padding: 0px;
font-family: 'tahoma', century gothic;
scroll-behavior: smooth;
box-sizing: border-box;
}
.menu-container {
width: 100%;
height: 80px;
box-shadow: 0px 0px 50px rgba(0, 0, 0, .1);
background: white;
position: relative;
z-index: 0;
top: 0px;
}
.logo {
width: 30%;
height: 100%;
float: left;
padding-top: 10px;
padding-left: 10px;
}
.logo img {
height: 60px;
padding-top: 8px;
padding-left: 15px;
}
.menu-icons {
width: 5%;
height: 100%;
float: right;
text-align: left;
padding-right: 40px;
}
.menu-icons i {
font-size: 33px;
line-height: 80px;
}
.mobile-menu-items {
width: 100%;
top: 80px;
}
.mobile-menu-items ul li{
list-style: none;
line-height: 40px;
font-size: 19px;
font-weight: bold;
border-top: 1px solid gray;
}
.mobile-menu-items ul li a {
text-decoration: none;
color: black;
margin-left: 30px;
}
.mobile-menu-items ul li i {
float: right;
line-height: 40px;
padding: 0px 15px;
border-left: 1px solid gray;
}
.mobile-menu-items ul li ul li a {
margin-left: 10px;
}
.mobile-menu-items ul li ul li ul li a {
margin-left: 0px;
}