OCR / static /styles.css
Anubhav18's picture
Upload 12 files
bf0bd9f verified
* {
margin: 0;
padding: 0;
}
.main {
width: 100%;
min-height: 100vh;
background: linear-gradient(
90deg,
#f51d88 0%,
#ff6200 50%,
black 50%,
black 100%
);
color: white;
display: flex;
flex-direction: column;
align-items: center;
}
.nav {
width: 100%;
min-height: 20vh;
display: flex;
justify-content: center;
text-align: center;
margin-top: 2rem;
}
.title {
font-weight: 800;
font-size: 3rem;
text-decoration: underline;
font-family: Arial, Helvetica, sans-serif;
}
.drawing-area {
background-color: white;
width: 100%;
height: 450px;
cursor: pointer;
border: 2px solid white;
border-radius: 12px;
}
.clear-button {
margin: 2em;
font-size: 16px;
}
.maincontainer {
background-color: transparent;
width: 65%;
margin-top: 1rem;
display: flex;
flex-direction: column;
border: 2px solid white;
border-radius: 12px 12px;
padding: 12px;
backdrop-filter: blur(25px);
}
.form-label {
font-weight: 600 !important;
}
.inputcont {
margin-bottom: 1rem;
}
.buttoncont {
display: flex;
margin-bottom: 0.2rem;
align-items: center;
justify-content: center;
}
.btn {
background-color: black;
width: 130px;
height: 50px;
color: white;
font-weight: 700;
font-size: 20px;
border: 2px solid white;
transition: 0.5s all;
}
.clear-button:hover {
background-color: black;
box-shadow: 10px 10px white;
}
.save-button {
background: linear-gradient(90deg, #f51d88 0%, #ff6200 50%, #ff6200 100%);
}
.save-button:hover {
background: linear-gradient(90deg, #f51d88 0%, #ff6200 50%, #ff6200 100%);
box-shadow: 10px 10px white;
}
.outimg {
width: 100%;
height: 450px;
border: 2px solid white;
border-radius: 12px;
}
.outtextcont {
display: flex;
justify-content: center;
min-height: 2rem;
border: 1px solid white;
border-radius: 10px;
margin-bottom: 1rem;
backdrop-filter: blur(30px);
padding: 5px;
}
.outtext {
font-weight: 700;
font-size: 1.5rem;
}
.loader {
width: 100%;
height: 100vh;
position: fixed;
background-color: black;
opacity: 0.7;
color: white;
display: flex;
justify-content: center;
align-items: center;
z-index: 2;
}
.gifdiv {
background-color: transparent;
}
.gif {
border-radius: 12px !important;
}
@media (max-width: 800px) {
.maincontainer {
width: 90%;
}
.clear-button {
margin-left: 0;
}
}