2022-01-14 10:51:04 +01:00

77 lines
1.2 KiB
SCSS

// language select - moje ankete
#language_select {
position: absolute;
z-index: 78;
right: 32px;
font-weight: 500;
a{
display: flex;
align-items: center;
text-decoration: none;
&:hover{
text-decoration: none;
}
.flag{
height: 14px;
width: 24px;
margin-right: 9px;
background-size: 100% 30px;
background-position: center;
}
.flag.slo{
background-image: url('../img/flags/flag_slo.svg');
}
.flag.eng{
background-image: url('../img/flags/flag_eng.svg');
}
}
}
// Hover za izvoze
#hover_export {
@include hover_basic();
display: none;
position: absolute;
z-index: 99999;
right: 0px;
top: 31px;
width: 150px;
a {
display: flex;
padding: 6px 0;
margin: 0 !important;
text-decoration: none;
font-size: 16px;
transition: 0.2s;
&:hover{
text-decoration: none;
}
&:first-of-type{
padding-top: 0;
}
&:last-of-type{
padding-bottom: 0;
}
}
span.hover_export_icon {
display: inline-block;
width: 32px;
}
}