1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
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;
}
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
CSS Document
*/
div#grammalecte_conj_panel_content {
padding: 20px 0;
width: 100%;
}
div.grammalecte_centered_bar {
display: flex;
justify-content: center;
align-items: stretch;
width: 500px;
margin: 0 auto;
}
|
72
73
74
75
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
|
font: normal 18px Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif;
color: hsl(0, 0%, 30%);
}
div#grammalecte_conj_verb {
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;
}
|
>
|
>
|
|
>
|
<
|
<
<
<
<
|
|
|
<
|
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
font: normal 18px Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif;
color: hsl(0, 0%, 30%);
}
div#grammalecte_conj_verb {
color: hsl(0, 0%, 70%);
}
div#grammalecte_conj_erase_button {
display: inline-block;
margin: 3px;
padding: 5px 10px;
font-weight: bold;
color: hsl(0, 0%, 100%);
background-color: hsl(0, 0%, 80%);
border-radius: 4px;
}
div#grammalecte_conj_erase_button:hover {
background-color: hsl(0, 50%, 50%);
cursor: pointer;
}
div#grammalecte_conj_options {
margin: 10px 0 0 5px;
font-size: 16px;
text-align: center;
}
|