_language.scss
1010 Bytes
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.language-box{
padding-bottom: 6px;
>a{
background-color: rgba(207, 207, 207, 0.3);
margin-top: 5px;
color: white;
}
.language-option{
display: none;
position: absolute;
padding: 0;
margin: 2px 0 0;
width: 100px;
z-index: 105;
li:first-of-type{
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
li:last-of-type{
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
li{
list-style-type: none;
background-color: white;
height: 35px;
line-height: 35px;
a{
text-decoration: none;
padding: 3px;
color: $font-opa;
}
}
li:hover{
background-color: rgb(241, 241, 241);
}
.active{
background-color: $blue-s;
}
.active:hover{
background-color: rgb(241, 241, 241);
a{
color: white;
}
}
}
}