mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-05 21:47:32 +02:00
74 lines
1.5 KiB
Plaintext
74 lines
1.5 KiB
Plaintext
/* ==========================================================================
|
|
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;
|
|
}
|
|
}
|