hw3 new design

This commit is contained in:
2022-07-10 20:49:07 +02:00
parent 1fda560d0d
commit 24f7691b71

View File

@@ -12,10 +12,12 @@
} }
.error { .error {
position: absolute; margin-top: 7px;
color: red; color: #cc0000;
margin-left: 14px; font-family: 'Montserrat', sans-serif;
margin-top: -28px; font-weight: 400;
font-size: 14px;
line-height: 17px;
} }
.input { .input {
@@ -37,7 +39,7 @@
} }
.errorInput { .errorInput {
border: 1px solid red; border: 1px solid #cc0000;
} }
.button { .button {
@@ -45,7 +47,7 @@
background: #06c; background: #06c;
color: white; color: white;
border: none; border: none;
border-radius: 15px; border-radius: 3px;
outline: none; outline: none;
padding: 8px 24px; padding: 8px 24px;
font-family: 'Montserrat', sans-serif; font-family: 'Montserrat', sans-serif;
@@ -53,18 +55,17 @@
font-size: 14px; font-size: 14px;
line-height: 20px; line-height: 20px;
cursor: pointer; cursor: pointer;
height: 36px;
} }
.button:focus { .button:focus {
} }
.button:active { .button:active {
} }
.button:disabled { .button:disabled {
opacity: 0.6; opacity: 0.5;
cursor: default; cursor: default;
} }