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.
24 lines
420 B
24 lines
420 B
/** |
|
* @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; |
|
}
|
|
|