67 lines
1.1 KiB
SCSS
Executable File
67 lines
1.1 KiB
SCSS
Executable File
@charset "utf-8";
|
|
|
|
@import "variables";
|
|
.img-title{
|
|
letter-spacing: 5px;
|
|
}
|
|
// Title
|
|
.unity-title {
|
|
margin: 0.5em 0;
|
|
line-height: 1.5;
|
|
font-family: $main-font;
|
|
font-size: $font-h1;
|
|
color:#fff;
|
|
position: relative;
|
|
|
|
&:after{
|
|
height: 5px;
|
|
width: 350px;
|
|
content: "";
|
|
position: absolute;
|
|
top: 50px;
|
|
left: 0;
|
|
background: url(/assets/blue-light.png) top no-repeat;
|
|
background-size: contain;
|
|
}
|
|
.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;
|
|
}
|
|
}
|