accounts-frontend/src/components/languageSwitcher/changeLanguageLink/link.scss

36 lines
635 B
SCSS
Raw Normal View History

@import '~components/ui/colors.scss';
.languageLink {
position: relative;
color: #666;
border-bottom: 1px dotted #666;
text-decoration: none;
transition: .25s;
cursor: pointer;
&.mark {
&:after {
position: absolute;
content: '*';
color: $red;
font-size: 75%;
top: -0.20em;
}
}
}
.languageIcon {
$height: 13px;
position: relative;
top: 1px;
display: inline-block;
margin-right: 4px;
height: $height;
width: $height * 4 / 3;
box-shadow: 0 0 1px rgba(#000, .2);
background-size: cover;
}