fix(#3): amélioration du design des boutons

This commit is contained in:
newick 2018-11-20 10:56:57 +01:00
parent d4ad832004
commit 7505340c03
1 changed files with 17 additions and 3 deletions

View File

@ -26,10 +26,20 @@ button,
margin: 10px auto auto;
padding: 8px 0;
text-align: center;
color: blue;
border: 1px solid blue;
color: #4a90e2;
font-weight: 600;
border: 2px solid #4a90e2;
border-radius: 4px;
background-color: white;
transition: all 0.2s ease-in-out;
cursor: pointer;
}
.btn:hover,
button:hover,
[type="submit"]:hover {
color: #fff;
background-color: #4a90e2;
text-decoration: none;
}
.btn-no-style {
@ -46,6 +56,10 @@ section button {
color: #4a4a4a;
border-color: #4a4a4a;
}
section button:hover {
color: #fff;
background-color: #4a4a4a;
}
label,
input {
@ -86,7 +100,7 @@ input[type="date"]:disabled {
}
.toggle-field {
color: blue;
color: #4a90e2;
cursor: pointer;
text-decoration: underline;
}