64 lines
992 B
SCSS
64 lines
992 B
SCSS
@charset "utf-8";
|
|
|
|
@import "variables";
|
|
|
|
// Title
|
|
.unity-title {
|
|
margin: 0.5em ;
|
|
line-height: 1.5;
|
|
font-family: $main-font;
|
|
font-size: $font-h1;
|
|
color: $theme-color-main;
|
|
border-left: 3px solid #0268b7;
|
|
padding-left: 6px;
|
|
&:after{
|
|
height: 0;
|
|
width: 100%;
|
|
border-bottom: 1px solid #eee;
|
|
content: "";
|
|
position: absolute;
|
|
top: 55px;
|
|
left: 0;
|
|
}
|
|
.layout-footer & {
|
|
margin-bottom: 0.625em;
|
|
border-bottom: none;
|
|
|
|
span {
|
|
display: inline;
|
|
margin-bottom: 0;
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
//transition
|
|
.transition {
|
|
cursor: pointer;
|
|
transition: all 0.5s;
|
|
-moz-transition: all 0.5s;
|
|
-webkit-transition: all 0.5s;
|
|
-o-transition: all 0.5s;
|
|
}
|
|
|
|
.status {
|
|
font-family: $main-font;
|
|
font-size: 0.750em;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|