forked from codeguy/php-the-right-way
-
Notifications
You must be signed in to change notification settings - Fork 0
/
all.less
73 lines (65 loc) · 1.53 KB
/
all.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* ==========================================================================
NMC Bootstrap
This LESS file imports all other LESS files. You should compile
and minify this file before site launch.
========================================================================== */
/* Import NMC bootstrap */
@import "base/all";
/* Import site-specific styles */
@import "site/site-header.less";
@import "site/site-navigation.less";
@import "site/site-content.less";
@import "site/site-footer.less";
/* Tablets and Smartphones */
@media only screen and (max-width : 1024px) {
.build-date{
text-align: center;
}
.site-header{
height: 220px;
position: absolute;
top: 20px;
left: 0;
width: 100%;
}
.fork-me img{
height: 110px;
width: 110px;
}
.site-navigation{
margin-top: 240px;
padding: 20px;
position: relative;
width: auto;
ul{
border: 1px solid #999;
border-bottom: none;
}
li{
.man;
.pan;
}
a{
background: #CCC;
display: block;
border-bottom: 1px solid #999;
padding: 10px;
text-decoration: none;
}
ul ul{
border: none;
.man;
.pan;
}
ul ul a{
background: transparent;
}
}
.site-content{
padding: 20px;
}
.top{
display: inline-block;
float: none;
}
}