48 lines
921 B
SCSS
Vendored
48 lines
921 B
SCSS
Vendored
@use "../abstracts/mixin" as *;
|
|
@use "../abstracts/variables" as *;
|
|
|
|
@keyframes tilt-shaking {
|
|
0% { transform: rotate(0deg); }
|
|
25% { transform: rotate(5deg); }
|
|
50% { transform: rotate(0deg); }
|
|
75% { transform: rotate(-5deg); }
|
|
100% { transform: rotate(0deg); }
|
|
}
|
|
|
|
#schedule {
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
.program-title {
|
|
font-family: Montserrat, serif;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
line-height: 1.43;
|
|
color: $text-color;
|
|
}
|
|
.program-times {
|
|
@include post_date;
|
|
}
|
|
img {
|
|
margin-left: -30px;
|
|
margin-top: -30px;
|
|
width: CALC(100% + 54px);
|
|
}
|
|
.no-results, .loading {
|
|
font-family: Montserrat, serif;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
line-height: 1.43;
|
|
color: $text-color;
|
|
text-align: center;
|
|
padding: 20px;
|
|
span {
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
|
|
.onair {
|
|
animation: tilt-shaking 1s linear infinite;
|
|
}
|
|
}
|