Files
forkio/src/scss/_news.scss
Bartłomiej Pluta (PGS Software) 1359ee9131 Fix footer and news min-width
2018-06-05 14:10:39 +02:00

58 lines
964 B
SCSS
Executable File

.news {
padding-top: 70px;
min-width: 320px;
}
.news__title {
margin-bottom: 50px;
font-family: Montserrat, sans-serif;
font-weight: bold;
font-size: 28px;
color: $lightgray-text;
}
.news-entry {
margin-bottom: 30px;
}
.news-entry__brief {
font-family: Montserrat, sans-serif;
font-size: 16px;
color: $dark-text;
font-weight: 600;
}
.news-entry__title {
font-family: Montserrat, sans-serif;
font-size: 16px;
color: $primary;
font-weight: 600;
transition: $hover-duration;
&:hover {
color: darken($primary, $hover-threshold);
transition: $hover-duration;
text-decoration: none;
}
}
.news-entry__content {
margin-top: 15px;
font-family: Montserrat, sans-serif;
font-size: 13px;
color: $regular-text;
font-weight: 500;
}
@media all and (max-width: $phone) {
.news__news,
.news__extensions,
.news__blog {
padding: 0 30px;
}
.news__extensions,
.news__blog {
margin-top: 50px;
}
}