41 lines
793 B
SCSS
41 lines
793 B
SCSS
// Ikone (frekvenca, suma...)
|
|
|
|
.analysis_icons_holder{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
|
|
.icon_box{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
width: 24px;
|
|
height: 24px;
|
|
|
|
>a{
|
|
&:last-of-type{
|
|
margin-right: 0;
|
|
}
|
|
|
|
.faicon{
|
|
|
|
&:before{
|
|
font-size: 12px;
|
|
}
|
|
|
|
&.an_freq,
|
|
&.an_freqx,
|
|
&.an_stat,
|
|
&.an_sigma,
|
|
&.an_sigmax{
|
|
&:before{
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
} |