mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-12 08:05:18 +01:00
229 lines
4.0 KiB
Plaintext
229 lines
4.0 KiB
Plaintext
html {
|
|
-webkit-tap-highlight-color: fade(@link-color, 20%);
|
|
tap-highlight-color: fade(@link-color, 20%);
|
|
}
|
|
|
|
body {
|
|
background-color: @body-bg;
|
|
}
|
|
|
|
|
|
//
|
|
// Topbar
|
|
//
|
|
.topbar {
|
|
.clearfix;
|
|
border-bottom: 1px solid rgba(255,255,255,.7);
|
|
box-shadow: inset 0 1px 4px fade(@brand-dark, 20%), inset 0 -1px 4px fade(@brand-dark, 20%);
|
|
|
|
.row {
|
|
margin-top: @line-height-computed/2;
|
|
margin-bottom: @line-height-computed/2;
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
// Banner
|
|
//
|
|
|
|
.banner {
|
|
float: left;
|
|
|
|
@media @breakpoint2 {
|
|
margin-left: -54px
|
|
}
|
|
|
|
.banner-title {
|
|
margin-top: .1em;
|
|
margin-bottom: 0;
|
|
// display toned down logo
|
|
// by default
|
|
.logo;
|
|
}
|
|
|
|
.banner-logo {
|
|
.ir;
|
|
|
|
// repeat logo
|
|
// but display hover version
|
|
.logo;
|
|
background-position: left bottom;
|
|
|
|
// hide by default
|
|
opacity: 0;
|
|
// show smooooothly on hover
|
|
&:hover { opacity: 1 }
|
|
&:active { top: 0 }
|
|
}
|
|
}
|
|
|
|
// Logo
|
|
/////////////////////////////////////
|
|
.logo {
|
|
display: block;
|
|
background-image: data-uri('../img/logo.png');
|
|
background-repeat: no-repeat;
|
|
background-position: left top;
|
|
width: 47px;
|
|
height: 31px;
|
|
|
|
@media @breakpoint2 {
|
|
width: 183px;
|
|
}
|
|
|
|
@media @highDPI {
|
|
background-image: url('../img/logo@2x.png');
|
|
background-size: 183px 62px;
|
|
}
|
|
@media @highDPI_3x {
|
|
background-image: url('../img/logo@3x.png');
|
|
background-size: 183px 62px;
|
|
}
|
|
}
|
|
|
|
//
|
|
// close button
|
|
//
|
|
|
|
a.close,
|
|
.close {
|
|
width: 16px;
|
|
height: 16px;
|
|
line-height: 12px;
|
|
font-size: 16px;
|
|
padding: 0;
|
|
.border-radius(16px);
|
|
text-align: center;
|
|
display: block;
|
|
background: @brand-grey-light;
|
|
color: #fff;
|
|
|
|
&:hover { background: @link-color-hover }
|
|
}
|
|
|
|
|
|
// Footer
|
|
/////////////////////////////////////
|
|
|
|
.footer {
|
|
text-align: center;
|
|
background: fade(@brand-dark, 5%);
|
|
border-top: 1px solid rgba(255,255,255,.7);
|
|
box-shadow: inset 0 1px 4px fade(@brand-dark, 20%);
|
|
|
|
.footer-description {
|
|
.h5;
|
|
}
|
|
|
|
&,
|
|
.footer-description {
|
|
color: @text-color-light;
|
|
line-height: @line-height-computed;
|
|
}
|
|
|
|
.footer-copyright {
|
|
.divider-top;
|
|
padding-top: @line-height-computed;
|
|
padding-bottom: @line-height-computed;
|
|
p {
|
|
margin-bottom: 0;
|
|
font-size: @font-size-mini;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Subscribe component
|
|
.subscribe {
|
|
margin: @line-height-computed auto;
|
|
p {
|
|
margin: 0;
|
|
.clearfix;
|
|
.btn {
|
|
margin-bottom: 0;
|
|
padding: .3em 1em;
|
|
&:first-child {
|
|
margin-left:0
|
|
}
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
span {
|
|
.visuallyhidden;
|
|
}
|
|
}
|
|
}
|
|
i {
|
|
display: block;
|
|
color: @text-color-light;
|
|
&:before {
|
|
// Icon resets for color animations
|
|
.transition(color .3s ease-in-out);
|
|
color: inherit;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer:hover .subscribe .rss i:before {
|
|
color: #e15a00;
|
|
}
|
|
|
|
.footer:hover .subscribe .twitter i:before {
|
|
color: #019ad2;
|
|
}
|
|
|
|
.footer:hover .subscribe .google i:before {
|
|
color: #c63b1e;
|
|
}
|
|
|
|
.footer:hover .subscribe .facebook i:before {
|
|
color: #3b5998;
|
|
}
|
|
|
|
|
|
//
|
|
// topbar and footer as fixed
|
|
// site background
|
|
//
|
|
|
|
@media @breakpoint2 {
|
|
body {
|
|
position: relative
|
|
}
|
|
section[role=document] {
|
|
background-color: @page-bg;
|
|
margin-top: 71px;
|
|
.transition;
|
|
.menu-open & {
|
|
margin-top: 300px;
|
|
}
|
|
margin-bottom: 380px;
|
|
position: relative;
|
|
z-index: 2;
|
|
border-top: 1px solid rgba(255,255,255,.7);
|
|
border-bottom: 1px solid rgba(255,255,255,.7);
|
|
box-shadow: 0 1px 4px fade(@brand-dark, 10%), 0 -1px 4px fade(@brand-dark, 10%);
|
|
}
|
|
.topbar,
|
|
.footer {
|
|
position: fixed;
|
|
z-index: 1;
|
|
border: none;
|
|
}
|
|
.topbar {
|
|
min-height: 71px;
|
|
top: 0;
|
|
box-shadow: inset 0 1px 4px fade(@brand-dark, 10%);
|
|
border: none;
|
|
}
|
|
|
|
.footer {
|
|
height: 380px;
|
|
bottom: 0;
|
|
box-shadow: none;
|
|
|
|
.menu-open & { .hide; }
|
|
}
|
|
} |