1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
-
-
-
+
+
+
-
+
|
/*
CSS
Wrappen for Grammalecte
*/
.grammalecte_wrapper {
margin: 3px;
padding: 5px;
border-radius: 3px;
background-color: hsl(210, 40%, 96%);
border: 1px solid hsl(210, 40%, 92%);
box-shadow: 0 0 2px hsla(210, 40%, 0%, .5);
background-color: hsla(210, 100%, 96%, .2);
border: 1px solid hsla(210, 100%, 92%, .2);
box-shadow: 0 0 2px hsla(210, 100%, 0%, .2);
font-family: "Trebuchet MS", "Liberation Sans", sans-serif;
color: hsl(210, 40%, 50%);
color: hsla(210, 100%, 50%, .2);
}
.grammalecte_wrapper_title {
padding: 5px 0;
font-size: 12px;
font-variant: small-caps;
}
|
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
-
+
|
font-size: 14px;
color: hsl(210, 40%, 40%);
cursor: pointer;
}
.grammalecte_wrapper_button:hover {
background-color: hsl(210, 80%, 70%);
border: 1px solid hsl(210, 80%, 60%);
box-shadow: 0 0 1px 1px hsl(210, 80%, 80%);
box-shadow: 0 0 1px 1px hsla(210, 100%, 50%, .5);
color: hsl(210, 80%, 98%);
}
.grammalecte_wrapper_conj_section {
display: none;
}
|