32 lines
499 B
CSS
32 lines
499 B
CSS
.login-box {
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-color: #aaa;
|
|
border-radius: 10px;
|
|
|
|
align-self: center;
|
|
justify-self: center;
|
|
|
|
width: 500px;
|
|
padding: 20px;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.login-label {
|
|
margin: 0;
|
|
}
|
|
|
|
.login-button {
|
|
border-radius: 10px;
|
|
border-width: 0px;
|
|
|
|
background-color: cornflowerblue;
|
|
color: white;
|
|
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
padding: 3px
|
|
} |