1
2
3
4
5
6
7
8
9
10
|
/*
CSS Document
*/
div.grammalecte_clearer {
clear: both;
font-size: 0;
height: 0;
}
|
>
>
>
>
>
>
>
>
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
CSS Document
*/
div#grammalecte_conj_panel_content {
padding: 20px 0;
width: 100%;
}
div.centered_bar {
display: flex;
justify-content: center;
align-items: stretch;
width: 500px;
margin: 0 auto;
}
div.grammalecte_clearer {
clear: both;
font-size: 0;
height: 0;
}
|
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
color: hsl(0, 0%, 70%);
}
div#grammalecte_conj_button {
display: inline-block;
padding: 7px 10px;
font-size: 18px;
background-color: hsl(0, 30%, 30%);
color: hsl(0, 30%, 60%);
border-radius: 3px;
text-transform: uppercase;
text-align: center;
text-decoration: none;
cursor: pointer;
}
div#grammalecte_conj_button:hover {
background-color: hsl(0, 60%, 40%);
color: hsl(0, 60%, 70%);
box-shadow: 0 0 2px hsl(0, 60%, 50%);
}
div#grammalecte_conj_options {
margin: 10px 0 0 5px;
font-size: 16px;
text-align: center;
}
|
|
|
|
|
|
|
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
color: hsl(0, 0%, 70%);
}
div#grammalecte_conj_button {
display: inline-block;
padding: 7px 10px;
font-size: 18px;
background-color: hsl(210, 30%, 50%);
color: hsl(210, 30%, 80%);
border-radius: 3px;
text-transform: uppercase;
text-align: center;
text-decoration: none;
cursor: pointer;
}
div#grammalecte_conj_button:hover {
background-color: hsl(210, 60%, 40%);
color: hsl(210, 60%, 90%);
box-shadow: 0 0 2px hsl(210, 60%, 50%);
}
div#grammalecte_conj_options {
margin: 10px 0 0 5px;
font-size: 16px;
text-align: center;
}
|