This commit is contained in:
IgnatOffice
2022-05-30 11:53:52 +03:00
parent be36d35bc6
commit 0e359b05e7
8 changed files with 217 additions and 1 deletions

View File

@@ -0,0 +1,61 @@
.greetingForm {
display: flex;
align-items: center;
}
.error {
position: absolute;
color: red;
margin-left: 10px;
margin-top: -14px;
}
.input {
margin: 10px;
background: #003300;
color: #99ff99;
}
.input:focus {
outline: none;
border: #99ff99 solid 2px;
}
.errorInput {
margin: 10px;
background: #003300;
color: #99ff99;
border: 2px solid red;
outline: none;
}
.button {
margin: 10px;
width: 60px;
background: #003300;
color: #99ff99;
outline: none;
}
.button:focus {
outline: #99ff99 solid 1px;
}
.button:active {
background: #99ff99;
}
.button:disabled {
color: #005500;
}
.count {
margin: 10px;
}
.greeting {
margin-left: 10px;
}