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
|
/*
Grammar checker
*/
div#grammalecte_gc_panel_content {
position: absolute;
height: 100%;
width: 100%;
margin: 0;
overflow: auto;
}
div.grammalecte_paragraph_block {
margin: 5px 5px 0 5px;
}
p.grammalecte_paragraph {
margin: 0;
padding: 12px;
background-color: hsl(0, 0%, 96%);
border-radius: 2px;
line-height: 1.3;
text-align: left;
font-size: 14px;
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
color: hsl(0, 0%, 0%);
hyphens: none;
}
/*
Action buttons
*/
div.grammalecte_paragraph_actions {
float: right;
margin: 0 0 5px 10px;
|
>
>
<
<
<
<
|
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
|
/*
Grammar checker
*/
div#grammalecte_gc_panel_content {
position: absolute;
height: 100%;
width: 100%;
margin: 0;
overflow: auto;
}
div.grammalecte_paragraph_block {
margin: 5px 5px 0 5px;
background-color: hsl(0, 0%, 96%);
border-radius: 2px;
}
p.grammalecte_paragraph {
margin: 0;
padding: 12px;
line-height: 1.3;
text-align: left;
font-size: 14px;
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
color: hsl(0, 0%, 0%);
hyphens: none;
}
/*
Action buttons
*/
div.grammalecte_paragraph_actions {
float: right;
margin: 0 0 5px 10px;
|
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
cursor: pointer;
font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
font-size: 14px;
color: hsl(0, 0%, 96%);
border-radius: 2px;
}
div.grammalecte_paragraph_actions .grammalecte_green {
color: hsl(0, 0%, 80%);
}
div.grammalecte_paragraph_actions .grammalecte_green:hover {
background-color: hsl(120, 50%, 40%);
color: hsl(0, 0%, 100%);
}
|
>
>
>
>
>
>
>
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
cursor: pointer;
font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
font-size: 14px;
color: hsl(0, 0%, 96%);
border-radius: 2px;
}
div.grammalecte_paragraph_actions .grammalecte_blue {
color: hsl(0, 0%, 80%);
}
div.grammalecte_paragraph_actions .grammalecte_blue:hover {
background-color: hsl(210, 50%, 40%);
color: hsl(0, 0%, 100%);
}
div.grammalecte_paragraph_actions .grammalecte_green {
color: hsl(0, 0%, 80%);
}
div.grammalecte_paragraph_actions .grammalecte_green:hover {
background-color: hsl(120, 50%, 40%);
color: hsl(0, 0%, 100%);
}
|