179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
-
-
+
+
+
+
+
+
|
ERRORS
*/
.grammalecte_error {
margin: 0;
padding: 0;
cursor: pointer;
border-radius: 2px;
text-decoration: none;
text-shadow: unset;
/* default color */
background-color: hsl(240, 10%, 50%);
color: hsl(240, 0%, 96%);
font-size: 14px;
font-family : "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
text-decoration: none;
text-shadow: unset;
text-align: left;
}
.grammalecte_error:hover {
background-color: hsl(240, 10%, 40%);
color: hsl(240, 0%, 100%);
}
.grammalecte_error_corrected,
|