12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- body{
- margin: 0;
- font-family: Calibri, sans-serif;
- padding: 0;
- }
- .container {
- height: 350px;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- background-color: lightskyblue;
- }
- .container-for-login, .container-for-password, .container-for-buttons {
- margin: 5px;
- }
- .out {
- margin-top: 5px;
- display: flex;
- width: 200px;
- text-align: center;
- }
- .button, .button-clear, .button-push, .out-1, .out-2{
- border-radius: 3px;
- cursor: pointer;
- background-color: white;
- height: 25px;
- width: 80px;
- font-size: 12px;
- margin: 5px;
- border: 0;
- }
- .button:hover, .button-clear:hover, .button-push:hover, .out-1:hover, .out-2:hover{
- border-radius: 3px;
- cursor: pointer;
- background-color: white;
- height: 25px;
- width: 80px;
- font-size: 12px;
- margin: 5px;
- border: 1px solid black;
- }
- .button-clear{
- cursor: pointer;
- background-color: white;
- }
- .input-password, .input-login, .input-1 {
- border: 1px solid gray;
- border-radius: 3px;
- height: 25px;
- font-size: 16px;
- display: block;
- margin-top:5px;
- }
- .label-login, .label-number, .label-password{
- color: black;
- font-size: 18px;
- }
- .container-1{
- height: 300px;
- background-color: pink;
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- }
- .container-for-input{
- margin-bottom: 20px;
- display: flex;
- flex-direction: column;
- }
- .container-for-button{
- display: flex;
- justify-content: center;
- }
|