-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmobile.less
54 lines (45 loc) · 936 Bytes
/
mobile.less
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
@import "variables.less";
@media (min-device-width: 320px) and (max-device-width: 736px) {
#mainNav {
box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.5);
.navbar-brand {
color: #FFF;
font-size: 12px;
padding: 20px;
}
.navbar-toggle {
color: #FFF;
margin-right: 10px;
&:hover, &:focus {
background-color: @theme-primary;
}
}
.navbar-collapse.collapse {
.nav.navbar-nav {
background: @theme-primary;
margin: 0 -15px;
li {
a { color: #FFF; }
&.active {
> a,
> a:focus {
color: lighten(@theme-primary, 50%) !important;
font-weight: normal;
}
}
}
}
}
}
#page-top header {
.header-content {
padding: 70px 5px 20px;
}
}
#homeHeading {
img {
margin-left: -35vw;
width: 65vw;
}
}
}