created and styled stories section

This commit is contained in:
Yusuf Ipek
2021-05-13 13:13:50 +03:00
parent 68c330ae90
commit b1195f8078
5 changed files with 110 additions and 3 deletions
+31
View File
@@ -9,10 +9,24 @@
.heading-2 {
@extend %heading;
font-size: 4rem;
font-style: italic;
line-height: 1;
&--light {
color: $color-grey-light-1;
}
&--dark {
color: $color-grey-dark-1;
}
}
.heading-3 {
@extend %heading;
font-size: 1.6rem;
color: $color-primary;
text-transform: uppercase;
}
.heading-4 {
@@ -27,3 +41,20 @@
color: $color-grey-dark-1;
}
}
.btn {
background-color: $color-primary;
color: #fff;
border: none;
border-radius: 0;
font-family: $font-display;
font-size: 1.5rem;
text-transform: uppercase;
padding: 1.8rem 3rem;
cursor: pointer;
transition: all 0.2s;
&:hover {
background-color: $color-primary-dark;
}
}