first commit
This commit is contained in:
Executable
+72
@@ -0,0 +1,72 @@
|
||||
.login {
|
||||
background-color: $grey-dark;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
justify-content: space-between;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.loginLeft {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.loginCircle,
|
||||
.infoPane {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.loginCircle {
|
||||
border-radius: 1000px;
|
||||
border: 600px solid $yellow;
|
||||
top: -200px;
|
||||
left: -450px;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
color: $yellow;
|
||||
background-color: $yellow;
|
||||
}
|
||||
|
||||
.infoPane {
|
||||
z-index: 9;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
left: 200px;
|
||||
top: -100px;
|
||||
img {
|
||||
position: relative;
|
||||
max-width: 200px;
|
||||
width: 200px;
|
||||
left: -165px;
|
||||
}
|
||||
|
||||
.welcomeText {
|
||||
margin-top: 15px;
|
||||
color: $grey-dark;
|
||||
align-self: center;
|
||||
justify-content: center;
|
||||
font-size: larger;
|
||||
position: relative;
|
||||
font-weight: bold;
|
||||
width: 280px;
|
||||
}
|
||||
}
|
||||
|
||||
.loginForm {
|
||||
position: relative;
|
||||
align-self: center;
|
||||
left: -125px;
|
||||
padding: 10px;
|
||||
|
||||
&.welcomeText{
|
||||
color: white;
|
||||
}
|
||||
|
||||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user