This commit is contained in:
Sébastien Marro 2020-12-04 04:37:45 +01:00
commit b530cfcf47
2 changed files with 8 additions and 6 deletions

View File

@ -95,11 +95,12 @@ input[type=button], input[type=submit], input[type=reset] {
-moz-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out, transform 0.2;
} }
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover { input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
background-color: #39ace7; background-color: #197abb;
font-size: 18px;
} }
input[type=button]:active, input[type=submit]:active, input[type=reset]:active { input[type=button]:active, input[type=submit]:active, input[type=reset]:active {

View File

@ -67,7 +67,7 @@ h2.inactive {
h2.active { h2.active {
color: #0d0d0d; color: #0d0d0d;
border-bottom: 2px solid #197abb; border-bottom: 2px solid #0073be;
} }
@ -75,7 +75,7 @@ h2.active {
/* FORM TYPOGRAPHY*/ /* FORM TYPOGRAPHY*/
input[type=button], input[type=submit], input[type=reset] { input[type=button], input[type=submit], input[type=reset] {
background-color: #197abb; background-color: #0073be;
border: none; border: none;
color: white; color: white;
padding: 15px 80px; padding: 15px 80px;
@ -91,11 +91,12 @@ input[type=button], input[type=submit], input[type=reset] {
-moz-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out, transform 0.2;
} }
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover { input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
background-color: #197abb; background-color: #197abb;
font-size: 18px;
} }
input[type=button]:active, input[type=submit]:active, input[type=reset]:active { input[type=button]:active, input[type=submit]:active, input[type=reset]:active {
@ -237,7 +238,7 @@ input[type=text]::placeholder, input[type=password]::placeholder {
bottom: -10px; bottom: -10px;
width: 0; width: 0;
height: 2px; height: 2px;
background-color: #197abb; background-color: #0073be;
content: ""; content: "";
transition: width 0.2s; transition: width 0.2s;
} }