62 lines
994 B
SCSS
62 lines
994 B
SCSS
span.faicon,
|
|
a.faicon{
|
|
font-family: $fontawesome;
|
|
color: inherit;
|
|
display: inline-block;
|
|
font-weight: 900;
|
|
|
|
&.link-right {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
&.link-left {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
//VELIKOSTI
|
|
|
|
&.large {
|
|
font-size: 32px !important;
|
|
}
|
|
|
|
&.medium {
|
|
font-size: 24px !important;
|
|
}
|
|
|
|
&.normal {
|
|
font-size: 16px !important;
|
|
}
|
|
|
|
&.small {
|
|
font-size: 10px !important;
|
|
}
|
|
|
|
//BARVE
|
|
|
|
&.yellow {
|
|
color: $yellow;
|
|
}
|
|
}
|
|
|
|
span.faicon.lock_open::before{
|
|
content: "\f3c1";
|
|
}
|
|
span.faicon.lock_close::before{
|
|
content: "\f023";
|
|
}
|
|
|
|
span.faicon.bell::before{
|
|
content: "\f0f3";
|
|
}
|
|
|
|
span.faicon.bell_slash::before{
|
|
content: "\f1f6";
|
|
}
|
|
|
|
span.faicon.trash::before{
|
|
content: "\f2ed";
|
|
}
|
|
|
|
span.faicon.copy::before{
|
|
content: "\f0c5";
|
|
} |