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
|
/*
Lexicographer
*/
div#grammalecte_lxg_panel_content {
display: none;
position: absolute;
height: 100%;
width: 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;
margin: -12px 0 5px 10px;
padding: 5px 10px;
font-family: "Trebuchet MS", "Fira Sans", "Ubuntu Condensed", "Liberation Sans", sans-serif;
font-size: 14px;
font-weight: bold;
border-radius: 0 0 4px 4px;
background-color: hsl(0, 50%, 50%);
color: hsl(0, 10%, 96%);
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
|
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/*
Lexicographer
*/
div#grammalecte_lxg_panel_content {
display: none;
position: absolute;
height: 100%;
width: 100%;
font-size: 13px;
}
div#grammalecte_lxg_input_block {
padding: 10px;
/*background-color: hsl(210, 50%, 95%);*/
/*border-bottom: solid 1px hsl(210, 0%, 90%);*/
text-align: right;
}
div#grammalecte_lxg_result_zone {
}
div#grammalecte_lxg_input {
min-height: 100px;
padding: 10px;
background-color: hsl(210, 0%, 100%);
border: solid 1px hsl(210, 20%, 80%);
border-radius: 3px;
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
text-align: left;
}
div#grammalecte_lxg_input_button {
display: inline-block;
margin: 0 10px 0 0;
padding: 3px 10px;
background-color: hsl(210, 50%, 50%);
color: hsl(210, 50%, 98%);
text-align: center;
cursor: pointer;
border-radius: 0 0 3px 3px;
}
div.grammalecte_lxg_paragraph_sentence_block {
margin: 5px 0px 20px 0px;
background-color: hsl(210, 50%, 95%);
border-radius: 3px;
border-top: solid 1px hsl(210, 50%, 90%);
border-bottom: solid 1px hsl(210, 50%, 90%);
hyphens: none;
}
p.grammalecte_lxg_paragraph_sentence {
padding: 3px 10px;
font-weight: bold;
color: hsl(210, 50%, 40%);
}
div.grammalecte_lxg_list_of_tokens {
padding: 10px;
background-color: hsl(210, 50%, 99%);
border-radius: 5px;
}
div.grammalecte_lxg_list_num {
float: right;
margin: -2px 5px 5px 10px;
padding: 5px 10px;
font-family: "Trebuchet MS", "Fira Sans", "Ubuntu Condensed", "Liberation Sans", sans-serif;
font-size: 14px;
font-weight: bold;
border-radius: 0 0 4px 4px;
background-color: hsl(0, 50%, 50%);
color: hsl(0, 10%, 96%);
|