43 lines
592 B
SCSS
43 lines
592 B
SCSS
@charset "utf-8";
|
|
|
|
@import "variables";
|
|
|
|
// Title
|
|
.unity-title {
|
|
margin: 0.5em 0;
|
|
line-height: 1.5;
|
|
font-family: $main-font;
|
|
font-size: $font-h1;
|
|
|
|
.layout-footer & {
|
|
margin-bottom: 10px;
|
|
border-bottom: none;
|
|
|
|
span {
|
|
display: inline;
|
|
margin-bottom: 0;
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.status {
|
|
font-family: $main-font;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.status-top {
|
|
background-color: $theme-color-second;
|
|
}
|
|
|
|
.status-hot {
|
|
background-color: $theme-color-third;
|
|
}
|
|
|
|
.status-source {
|
|
background-color: $theme-color-main;
|
|
|
|
a {
|
|
color: $theme-white;
|
|
}
|
|
} |