1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
Lexicographer
*/
div#grammalecte_lxg_panel_content {
display: none;
padding: 5px;
font-size: 13px;
}
div.grammalecte_lxg_list_of_tokens {
margin: 5px 0 10px 0;
padding: 10px;
background-color: hsla(0, 0%, 95%, 1);
border-radius: 5px;
}
div.grammalecte_lxg_list_num {
float: right;
|
>
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
Lexicographer
*/
div#grammalecte_lxg_panel_content {
display: none;
position: absolute;
height: 100%;
font-size: 13px;
}
div.grammalecte_lxg_list_of_tokens {
margin: 10px 5px 0 5px;
padding: 10px;
background-color: hsla(0, 0%, 95%, 1);
border-radius: 5px;
}
div.grammalecte_lxg_list_num {
float: right;
|