2019-05-21 20:53:13 +05:30
|
|
|
@import '~components/ui/colors.scss';
|
|
|
|
|
2017-12-31 03:08:54 +05:30
|
|
|
.languageLink {
|
2019-11-27 14:33:32 +05:30
|
|
|
position: relative;
|
2019-05-21 20:53:13 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
color: #666;
|
|
|
|
border-bottom: 1px dotted #666;
|
|
|
|
text-decoration: none;
|
|
|
|
transition: 0.25s;
|
|
|
|
cursor: pointer;
|
2019-05-21 20:53:13 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
&.mark {
|
|
|
|
&:after {
|
|
|
|
position: absolute;
|
|
|
|
content: '*';
|
|
|
|
color: $red;
|
|
|
|
font-size: 75%;
|
|
|
|
top: -0.2em;
|
2019-05-21 20:53:13 +05:30
|
|
|
}
|
2019-11-27 14:33:32 +05:30
|
|
|
}
|
2017-12-31 03:08:54 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.languageIcon {
|
2019-11-27 14:33:32 +05:30
|
|
|
$height: 13px;
|
2017-12-31 03:08:54 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 4px;
|
|
|
|
height: $height;
|
|
|
|
width: $height * 4 / 3;
|
|
|
|
box-shadow: 0 0 1px rgba(#000, 0.2);
|
2017-12-31 03:08:54 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
background-size: cover;
|
2017-12-31 03:08:54 +05:30
|
|
|
}
|