8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
div.grammalecte_paragraph_block {
margin: 0 0 5px 0;
}
p.grammalecte_paragraph {
margin: 0;
padding: 10px;
background-color: hsl(0, 0%, 96%);
border-radius: 2px;
line-height: normal;
text-align: left;
font-size: 14px;
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
color: hsl(0, 0%, 0%);
|
|
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
div.grammalecte_paragraph_block {
margin: 0 0 5px 0;
}
p.grammalecte_paragraph {
margin: 0;
padding: 12px;
background-color: hsl(0, 0%, 96%);
border-radius: 2px;
line-height: normal;
text-align: left;
font-size: 14px;
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
color: hsl(0, 0%, 0%);
|
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
74
75
|
}
div.grammalecte_paragraph_button:hover {
background-color: hsl(0, 0%, 40%);
color: hsl(0, 0%, 100%);
}
div.grammalecte_paragraph_actions .grammalecte_green {
width: 80px;
background-color: hsl(120, 30%, 50%);
color: hsl(0, 0%, 96%);
}
div.grammalecte_paragraph_actions .grammalecte_green:hover {
background-color: hsl(120, 50%, 40%);
color: hsl(0, 0%, 100%);
}
div.grammalecte_paragraph_actions .grammalecte_red {
background-color: hsl(0, 30%, 50%);
color: hsl(0, 0%, 96%);
}
div.grammalecte_paragraph_actions .grammalecte_red:hover {
background-color: hsl(0, 50%, 40%);
color: hsl(0, 0%, 100%);
}
/*
TOOLTIP
*/
img#grammalecte_tooltip_arrow {
position: absolute;
|
<
>
>
>
>
>
>
|
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
74
75
76
77
78
79
80
|
}
div.grammalecte_paragraph_button:hover {
background-color: hsl(0, 0%, 40%);
color: hsl(0, 0%, 100%);
}
div.grammalecte_paragraph_actions .grammalecte_green {
background-color: hsl(120, 30%, 50%);
color: hsl(0, 0%, 96%);
}
div.grammalecte_paragraph_actions .grammalecte_green:hover {
background-color: hsl(120, 50%, 40%);
color: hsl(0, 0%, 100%);
}
div.grammalecte_paragraph_actions .grammalecte_red {
background-color: hsl(0, 30%, 50%);
color: hsl(0, 0%, 96%);
}
div.grammalecte_paragraph_actions .grammalecte_red:hover {
background-color: hsl(0, 50%, 40%);
color: hsl(0, 0%, 100%);
}
@keyframes grammalecte-pulse {
0% { box-shadow: 0 0 0 1px hsla(0, 100%, 50%, .4); }
50% { box-shadow: 0 0 0 3px hsla(0, 100%, 50%, .4); }
100% { box-shadow: 0 0 0 1px hsla(0, 100%, 50%, .4); }
}
/*
TOOLTIP
*/
img#grammalecte_tooltip_arrow {
position: absolute;
|