77 lines
739 B
SCSS
Raw Normal View History

p,span {
font-size: 16px;
2021-11-30 01:25:53 +01:00
margin-block-start: 0;
margin-block-end: 0;
//Razmiki med besedilom
&.bottom16 {
margin-bottom: 16px;
}
&.top16 {
margin-top: 16px;
}
&.top32 {
margin-top: 32px;
}
&.bottom8 {
margin-bottom: 8px;
}
&.top8 {
margin-top: 8px;
}
2021-12-24 00:51:42 +01:00
}
//Barve
2021-12-24 00:51:42 +01:00
.warning,
.red {
color: $red;
}
2021-11-30 01:25:53 +01:00
.blue {
color: $blue;
}
.gray {
color: $very-dark-gray;
}
//Stili
2021-12-24 00:51:42 +01:00
.italic {
font-style: italic;
}
2021-12-24 00:51:42 +01:00
.bold {
font-weight: $extra-bold;
}
.semi-bold {
font-weight: $semi-bold;
}
.heavy {
font-weight: $heavy;
}
2021-12-24 00:51:42 +01:00
.caps {
text-transform: uppercase;
}
//Ostalo
.as_link {
text-decoration: underline;
color: $blue;
cursor: pointer;
}
.pointer {
cursor: pointer;
2022-02-04 13:15:31 +01:00
}
.avg {
text-decoration: overline;
}