You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
420 B
25 lines
420 B
6 years ago
|
/**
|
||
|
* @file
|
||
|
* Visual styles for Magazine+'s language switcher.
|
||
|
*/
|
||
|
.block-language ul {
|
||
|
padding-left: 0;
|
||
|
list-style: none;
|
||
|
}
|
||
|
.block-language ul li {
|
||
|
padding: 5px 0 5px 20px;
|
||
|
position: relative;
|
||
|
}
|
||
|
.block-language ul li:before {
|
||
|
content: "";
|
||
|
font-family: "FontAwesome";
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 7px;
|
||
|
font-size: 10px;
|
||
|
}
|
||
|
.block-language ul li:before {
|
||
|
content: "\f0da";
|
||
|
font-size: 12px;
|
||
|
}
|