93 lines
850 B
SCSS
93 lines
850 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;
|
|
}
|
|
|
|
.bottom32 {
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.bottom8 {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.top8 {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.bottom4 {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.top4 {
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.top0 {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
//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;
|
|
} |