File size: 2,544 Bytes
bf0bd9f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | * {
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;
}
}
|