blob: 476ab4a6699650a37984c35d9604ff78177a34ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#languageSwitchBox {
padding: 0.5em 5px;
border-radius: 4px;
z-index: 100;
text-align:left;
display: none;
position: absolute;
left: 0; top: 0; /*left, right set through js*/
background-color: #555;
border: 1px solid #000;
}
#languageSwitchBox .switchBoxTitle {
padding-bottom:5px;
margin-bottom:5px;
border-bottom: 1px solid #444;
}
#languageSwitchBox a {
color:#aaa;
}
#languageSwitchBox a:hover {
color:#ddd;
}
[class*="langflag-"] {
overflow: hidden;
text-indent: -9999px;
vertical-align: bottom;
}
|