60 lines
726 B
SCSS

// Barve
$temno_modra: $strong_blue_super_darken;
$modra: $strong_blue;
$svetlo_modra: $strong_blue_super_light;
$zelo_svetlo_modra: $strong_blue_very_lighten;
$rdeca: $red;
$oranzna: $orange;
$svetlo_oranzna: $orange_lighten;
.block {
display: block;
&.right {
float: right;
}
&.left{
float: left;
}
&.click{
cursor: pointer;
}
}
.left{
text-align: left;
}
.right{
text-align: right;
}
.center{
text-align: center;
}
.justify{
text-align: justify;
}
.rdeca{
color: $rdeca !important;
}
.oranzna{
color: $oranzna !important;
}
.modra{
color: $modra !important;
}
.svetlo_modra{
color: $svetlo_modra !important;
}
.click{
cursor: pointer;
&:hover{
opacity: 0.8;
}
}