42 lines
616 B
SCSS
Executable File
Vendored
42 lines
616 B
SCSS
Executable File
Vendored
@use "../abstracts/mixin" as *;
|
|
@use "../abstracts/variables" as *;
|
|
|
|
.radio_box {
|
|
padding: 15px 23px 15px 15px;
|
|
width: CALC(100% - 38px);
|
|
|
|
h2 {
|
|
font-size: 20px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.post_title {
|
|
font-family: Montserrat, serif;
|
|
font-weight: 600;
|
|
line-height: 1.35;
|
|
color: $text-color;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: $text-color;
|
|
}
|
|
}
|
|
|
|
.post_date {
|
|
@include post_date;
|
|
}
|
|
|
|
|
|
p {
|
|
font-family: Nunito, serif;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 1.57;
|
|
text-align: left;
|
|
color: $text-secondary-color;
|
|
}
|
|
}
|