mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-12 08:05:18 +01:00
178 lines
2.9 KiB
Plaintext
178 lines
2.9 KiB
Plaintext
html {
|
|
-webkit-tap-highlight-color: fade(@link-color, 20%);
|
|
tap-highlight-color: fade(@link-color, 20%);
|
|
}
|
|
|
|
body {
|
|
background: @body-bg;
|
|
}
|
|
|
|
//
|
|
// Topbar
|
|
//
|
|
.topbar {
|
|
.clearfix;
|
|
background: #f1f4f7;
|
|
.row {
|
|
margin-top: @line-height-computed/2;
|
|
margin-bottom: @line-height-computed/2;
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
// Banner
|
|
//
|
|
|
|
.banner {
|
|
float: left;
|
|
|
|
@media @breakpoint2 {
|
|
margin-left: -55px
|
|
}
|
|
|
|
.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 print, (-webkit-min-device-pixel-ratio: 3), (min-resolution: 300dpi) {
|
|
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%);
|
|
|
|
.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;
|
|
} |