Cockatrice/webclient/src/containers/Login/Login.css
Aren Kasner ed32e72dc1
login page created (#4444)
login page html and css created with Seavor
2021-10-25 23:36:20 -04:00

163 lines
2.6 KiB
CSS

.login {
height: 100%;
padding: 50px;
}
.login__wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
.login-content {
width: 100%;
max-width: 1000px;
display: flex;
border-radius: 8px;
overflow: hidden;
}
.login-content__header {
font-family: Teko, sans-serif;
font-size: 34px;
font-weight: bold;
display: flex;
align-items: center;
}
.login-content__header img {
height: 60px;
margin-right: 15px;
margin-bottom: 20px;
}
.login-content__form,
.login-content__description {
width: 50%;
}
.login-content__form {
padding: 50px 50px 33px;
}
.login-content__form h1 {
margin-bottom: 20px;
}
.login-form {
margin-top: 30px;
}
.login-content__description {
position: relative;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-size: 24px;
overflow: hidden;
}
.login-content__description-wrapper {
position: relative;
width: 70%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.login-content__description-image {
width: 100%;
}
.login-content__description-placeholder {
width: 100%;
height: 207px;
border: 1px solid;
}
.login-content__description-subtitle1 {
margin: 40px 0 20px;
font-size: 28px;
font-weight: bold;
}
.login-content__description-subtitle2 {
font-size: 14px;
}
.login-content__description-square {
position: absolute;
border: 1px solid;
opacity: .1;
}
.login-content__description-bar {
position: absolute;
opacity: .2;
background-color: #401C7F;
border-radius: 8px;
}
.login-content__description-square.topLeft {
transform: rotate(27deg);
top: 38px;
left: 64px;
height: 134px;
width: 100px;
border-radius: 8px;
}
.login-content__description-square.topRight {
transform: rotate(10deg);
top: 74px;
right: 62px;
height: 50px;
width: 66px;
border-radius: 20px;
}
.login-content__description-square.bottomLeft {
transform: rotate(120deg);
bottom: 61px;
left: 66px;
height: 50px;
width: 66px;
border-radius: 20px;
}
.login-content__description-square.bottomRight {
transform: rotate(-24deg);
bottom: 54px;
right: 0;
height: 88px;
width: 66px;
border-radius: 8px;
}
.login-content__description-bar.bottomBar {
transform: rotate(30deg);
bottom: -4px;
left: -29px;
height: 50px;
width: 222px;
}
.login-content__description-bar.topBar {
transform: rotate(-330deg);
top: 10px;
right: -49px;
height: 50px;
width: 222px;
}
.login-footer {
margin-top: 30px;
}
.login-footer_register {
margin-bottom: 10px;
font-weight: bold;
}
.login-content__connectionStatus {
text-align: center;
margin: 20px 0;
padding: 20px;
}