You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
portio-hugo/assets/scss/_typography.scss

71 lines
1.0 KiB

.base-font {
font-family: $font-family-base;
}
a.text-light, a.text-dark {
transition: all .3s ease;
&:hover{
color: $primary !important; // Yeah, I'm using "!important", what of it?
}
}
.top-title{
font-size: 20px;
position: relative;
display: block;
margin-bottom: 30px;
}
.pre-line{
margin-left: 20px;
&::before{
position: absolute;
content: '';
height: 2px;
width: 20px;
top: 50%;
left: -20px;
transform: translateX(-50%);
background: $secondary-color;
}
}
// body{
// font-family: $primary-font;
// font-size: 16px;
// color: $text-color;
// }
// h1, .h1, h2, h3, h4, h5, h6{
// font-family: $font-family-header;
// }
// p{
// font-size: 16px;
// color: $text-color;
// }
// h1{
// font-size: 60px;
// }
// h2{
// font-size: 50px;
// }
// h3{
// font-size: 30px;
// }
// h4{
// font-size: 25px;
// }
// h5{
// font-size: 18px;
// }
// h6{
// font-size: 15px;
// font-weight: 300;
// }