93 lines
1.5 KiB
CSS
93 lines
1.5 KiB
CSS
.login {
|
|
display: flex;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
max-width:100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
|
|
.login-left {
|
|
overflow: hidden;
|
|
display: flex;
|
|
background-color: black;
|
|
height: 100%;
|
|
justify-content: center;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.login-right {
|
|
display: flex;
|
|
height: 100%;
|
|
flex-direction: column;
|
|
margin-left: auto;
|
|
margin-right: 5vw;
|
|
margin-left: 5vw;
|
|
justify-content: inherit;
|
|
}
|
|
|
|
|
|
.login-logo-block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.login-login-block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.login-links-block {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
margin-bottom: 2vh;
|
|
font-size: xx-small;
|
|
}
|
|
|
|
|
|
.login-logo {
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
|
|
|
|
.login-button {
|
|
margin-top: "10px";
|
|
padding: 16px 32px;
|
|
font-size: 16px;
|
|
border-radius: 12px;
|
|
background-color: var(--buttons-main-color);
|
|
color: var(--text_dark);
|
|
border: none;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.login-button:hover {
|
|
background-color: var(--buttons-hover-color);
|
|
color: var(--text_dark);
|
|
}
|
|
|
|
.login-button:active {
|
|
background-color: var(--buttons-press-color);
|
|
color: var(--text_dark);
|
|
}
|
|
|
|
|
|
.login-link {
|
|
color: var(--links-main-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.login-link:hover {
|
|
color: var(--links-hover-color);
|
|
text-decoration: none;
|
|
}
|