Internet_Programming_PIbd-2.../styles/styleSigh.css

152 lines
2.5 KiB
CSS
Raw Normal View History

2023-11-12 13:22:57 +04:00
body {
margin: 0;
padding: 0;
background-color: #452B21;
}
.nav-item svg path {
transition: fill .4s;
}
.nav-item:hover svg path {
fill: #79584c;
}
.background-image {
background-image: url("/images/backgroung_sign.png");
background-size: cover;
width: 50%;
height: 100vh;
display: inline-block;
}
.sign-in-container {
background-color: #ffffff;
border-radius: 15px;
padding: 20px;
width: 500px;
height: 400px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
}
.sign-up-container {
background-color: #ffffff;
border-radius: 15px;
padding: 20px;
width: 500px;
height: 475px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
}
.custom-h {
color: #000;
text-align: center;
font-family: Jost;
font-size: 50px;
font-style: normal;
font-weight: 300;
line-height: normal;
margin-bottom: 20px;
}
.input-box {
border-radius: 8px;
font-size: 17px;
width: 450px;
height: 60px;
margin-bottom: 20px;
}
.form-control {
border-radius: 8px;
font-size: 17px;
width: 450px;
height: 60px;
margin-bottom: 20px;
}
.btn-custom {
border-radius: 8px;
width: 450px;
height: 60px;
background-color: #452B21;
margin-bottom: 20px;
color: #fff;
text-align: center;
font-family: Jost;
font-size: 32px;
font-style: normal;
font-weight: 400;
line-height: normal;
border: 2px solid #452B21;
}
.btn-custom:hover {
background-color: #66442B;
border: 2px solid #66442B;
}
.custom-text {
color: #8C8C8C;
text-align: center;
font-family: Jost;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.custom-a {
color: #452B21;
font-family: Jost;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.custom-a:hover {
color: #9c614a;
}
.error {
border-color: red !important;
background-color: rgba(255, 222, 222, 0.26) !important;
}
@media (max-width: 767px) {
.sign-in-container {
width: 290px;
height: 375px;
padding: 10px;
}
.sign-up-container {
width: 290px;
height: 425px;
padding: 10px;
}
.custom-h {
font-size: 28px;
}
.form-control {
width: 80%;
}
.btn-custom {
width: 80%;
font-size: 90%;
}
}