Better contrast for input fields (#417)

* Better contrat for input fields

This change set a white background for input field (text, select and textarea)
to have a better contrast with the page background and improve accessibility for
people with vision problem, and just crappy screen.

This change also remove the round corner for the input to have a clear difference
between editing field and buttons.

This max-width of the form element are a bit bigger too.

* Less space between label and input
This commit is contained in:
Dominique Feyer
2019-01-09 18:57:48 +01:00
committed by Baptiste Gelez
parent 0490b698cb
commit 09a26b4602
4 changed files with 14 additions and 9 deletions
+7
View File
@@ -4,6 +4,13 @@
@import url('/static/fonts/Lora/Lora.css');
@import url('/static/fonts/Playfair_Display/PlayfairDisplay.css');
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
@import 'variables';
@import 'global';
@import 'header';