first commit
This commit is contained in:
68
src/app/(Admin)/login/login.module.css
Normal file
68
src/app/(Admin)/login/login.module.css
Normal file
@@ -0,0 +1,68 @@
|
||||
.container {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background-image: linear-gradient(to top right, #240e00, #823c03);
|
||||
}
|
||||
|
||||
.login_container {
|
||||
width: 80%;
|
||||
max-width: 900px;
|
||||
height: 500px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
box-shadow: rgba(0, 0, 0, 0.119) 0px 0px 15px;
|
||||
}
|
||||
|
||||
.login_hero {
|
||||
width: 60%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.login_image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
transition: all 0.5s ease-in-out;
|
||||
|
||||
&:hover {
|
||||
transform: scale(1.1);
|
||||
|
||||
.image {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
overflow: hidden;
|
||||
float: left;
|
||||
opacity: 0.7;
|
||||
transition: all 0.5s ease-in-out;
|
||||
}
|
||||
|
||||
.login_box {
|
||||
width: 40%;
|
||||
height: 100%;
|
||||
min-width: 360px;
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background-color: #f8feff;
|
||||
}
|
||||
Reference in New Issue
Block a user