49 lines
808 B
Stylus
49 lines
808 B
Stylus
.site-meta {
|
|
margin: 0;
|
|
text-align: $site-meta-text-align;
|
|
|
|
+mobile() { text-align: center; }
|
|
}
|
|
|
|
.brand {
|
|
position: relative;
|
|
display: inline-block;
|
|
padding: 0 40px;
|
|
color: $brand-color;
|
|
background: $brand-bg;
|
|
border-bottom: none;
|
|
&:hover { color: $brand-hover-color; }
|
|
}
|
|
|
|
.logo {
|
|
display: inline-block;
|
|
margin-right: 5px;
|
|
line-height: 36px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.site-title {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
line-height: 36px;
|
|
font-size: $logo-font-size;
|
|
font-weight: normal;
|
|
font-family: $font-family-logo;
|
|
}
|
|
|
|
.site-subtitle {
|
|
margin-top: 10px;
|
|
font-size: $subtitle-font-size;
|
|
color: $subtitle-color;
|
|
}
|
|
|
|
.use-motion {
|
|
.brand { opacity: 0; }
|
|
|
|
.logo, .site-title, .site-subtitle {
|
|
opacity: 0;
|
|
position: relative;
|
|
top: -10px;
|
|
}
|
|
}
|