77 lines
739 B
SCSS
77 lines
739 B
SCSS
p,span {
|
|
|
|
font-size: 16px;
|
|
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;
|
|
}
|
|
}
|
|
|
|
//Barve
|
|
.warning,
|
|
.red {
|
|
color: $red;
|
|
}
|
|
|
|
.blue {
|
|
color: $blue;
|
|
}
|
|
|
|
.gray {
|
|
color: $very-dark-gray;
|
|
}
|
|
|
|
//Stili
|
|
.italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: $extra-bold;
|
|
}
|
|
|
|
.semi-bold {
|
|
font-weight: $semi-bold;
|
|
}
|
|
|
|
.heavy {
|
|
font-weight: $heavy;
|
|
}
|
|
|
|
.caps {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
//Ostalo
|
|
.as_link {
|
|
text-decoration: underline;
|
|
color: $blue;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.avg {
|
|
text-decoration: overline;
|
|
} |