├── index.css ├── index.html └── index.js /index.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | padding: 0; 4 | font-family: sans-serif; 5 | } 6 | .all 7 | { 8 | height: 100vh; 9 | } 10 | .hidden 11 | { 12 | height: 100%; 13 | width: 100%; 14 | position: absolute; 15 | background-color: rgba(0,0,0,0.5); 16 | display: flex; 17 | align-items: center; 18 | justify-content: center; 19 | visibility: hidden; 20 | } 21 | .nav 22 | { 23 | display: flex; 24 | width: 100%; 25 | } 26 | .nav h1 27 | { 28 | width: 55%; 29 | display: flex; 30 | justify-content: right; 31 | } 32 | .nav .b1 33 | { 34 | width: 45%; 35 | display: flex; 36 | align-items: center; 37 | justify-content: right; 38 | } 39 | .nav .b1 button 40 | { 41 | display: flex; 42 | align-items: center; 43 | justify-content: center; 44 | background-color: transparent; 45 | border: 0; 46 | margin-right: 10px; 47 | cursor: pointer; 48 | } 49 | .nav .b1 h1{ 50 | height: auto; 51 | width: auto; 52 | color: rgb(68, 226, 147); 53 | } 54 | .box 55 | { 56 | display: flex; 57 | position: absolute; 58 | flex-direction: column; 59 | background-color: rgb(71, 70, 70); 60 | height: 60%; 61 | width: 50%; 62 | border: 1px solid grey; 63 | border-radius: 10px; 64 | visibility:hidden; 65 | } 66 | .show 67 | { 68 | display: flex; 69 | flex-direction: column; 70 | background-color: rgb(71, 70, 70); 71 | height: 50%; 72 | width: 50%; 73 | border: 1px solid grey; 74 | border-radius: 10px; 75 | visibility: hidden; 76 | } 77 | .box .r1,.show .r1 78 | { 79 | display: flex; 80 | flex-direction: column; 81 | margin-left: 20px; 82 | margin-right: 20px; 83 | margin-top: 10px; 84 | } 85 | .box .r1 label,.show .r1 label 86 | { 87 | color:rgb(68, 226, 147) ; 88 | font-size: 20px; 89 | font-weight: bold; 90 | } 91 | .box .r1 input,.show .r1 input{ 92 | margin-left: 15px; 93 | height: 35px; 94 | border: 0; 95 | border-radius: 5px; 96 | } 97 | ::placeholder 98 | { 99 | padding-left: 10px; 100 | } 101 | .box .r2,.show .r2 102 | { 103 | display: flex; 104 | flex-direction: column; 105 | margin-left: 20px; 106 | margin-right: 20px; 107 | margin-top: 10px; 108 | } 109 | .box .r2 label,.show .r2 label 110 | { 111 | color:rgb(68, 226, 147) ; 112 | font-size: 20px; 113 | font-weight: bold; 114 | } 115 | .box .r2 textarea,.show .r2 textarea 116 | { 117 | margin-left: 15px; 118 | height: 100px; 119 | border: 0; 120 | border-radius: 5px; 121 | } 122 | .box .r3 123 | { 124 | display: flex; 125 | flex-direction: column; 126 | margin-left: 20px; 127 | margin-right: 20px; 128 | margin-top: 10px; 129 | } 130 | .show .r3 131 | { 132 | display: flex; 133 | align-items: center; 134 | margin-left: 20px; 135 | margin-right: 20px; 136 | margin-top: 10px; 137 | } 138 | .show .r3 div{ 139 | display: flex; 140 | align-items: center; 141 | } 142 | .show .r3 div label 143 | { 144 | margin-left: 5px; 145 | color: white; 146 | } 147 | .show .r3 div input[type='radio'] 148 | { 149 | accent-color: rgb(68, 226, 147); 150 | } 151 | .box .r3 label,.show .r3 label 152 | { 153 | color:rgb(68, 226, 147) ; 154 | font-size: 20px; 155 | font-weight: bold; 156 | } 157 | .box .r3 input,.show .r3 input{ 158 | margin-left: 15px; 159 | height: 35px; 160 | border: 0; 161 | border-radius: 5px; 162 | } 163 | .box .btn ,.show .btn 164 | { 165 | display: flex; 166 | width: 100%; 167 | height: 100%; 168 | align-items: center; 169 | justify-content: center; 170 | } 171 | .box .btn button,.show .btn button 172 | { 173 | height: 35px; 174 | width: 80px; 175 | background-color:rgb(68, 226, 147) ; 176 | color: white; 177 | border: 0; 178 | border-radius: 20px; 179 | cursor: pointer; 180 | font-size: 17px; 181 | font-weight: bold; 182 | display: flex; 183 | align-items: center; 184 | justify-content: center; 185 | margin-left: 10px; 186 | margin-bottom: 10px; 187 | } 188 | .main 189 | { 190 | height: 100%; 191 | background-color: black; 192 | color: white; 193 | } 194 | 195 | .head 196 | { 197 | display: flex; 198 | align-items: center; 199 | justify-content: center; 200 | height: 10%; 201 | color: rgb(68, 226, 147); 202 | font-size: 20px; 203 | } 204 | .cont{ 205 | height: 75%; 206 | overflow-y: auto; 207 | display: flex; 208 | flex-direction: column; 209 | align-items: center; 210 | } 211 | .cont::-webkit-scrollbar 212 | { 213 | background-color: transparent; 214 | width: 5px; 215 | } 216 | .cont::-webkit-scrollbar-thumb 217 | { 218 | background: rgb(68, 226, 147); 219 | } 220 | .foot 221 | { 222 | height: 15%; 223 | display: flex; 224 | align-items: center; 225 | justify-content: right; 226 | } 227 | .foot button{ 228 | border: 0; 229 | height: 50px; 230 | width: 50px; 231 | border-radius: 50%; 232 | margin-right: 2%; 233 | cursor: pointer; 234 | color: white; 235 | background-color: rgb(68, 226, 147); 236 | font-size: 20px; 237 | display: flex; 238 | align-items: center; 239 | justify-content: center; 240 | } 241 | .cont .cd 242 | { 243 | width: 80%; 244 | display: flex; 245 | align-items: center; 246 | background-color:rgb(27, 25, 25); 247 | margin-top: 10px; 248 | min-height: 60px; 249 | border: 0; 250 | border-radius: 10px; 251 | } 252 | .cont .ct{ 253 | display: flex; 254 | height: 30px; 255 | align-items: center; 256 | width: 80%; 257 | background-color: rgb(54, 52, 52); 258 | color: rgb(68, 226, 147); 259 | } 260 | .cont .ct .title 261 | { 262 | width: 50%; 263 | display: flex; 264 | justify-content: center; 265 | } 266 | .cont .ct .date 267 | { 268 | width: 25%; 269 | display: flex; 270 | justify-content: center; 271 | } 272 | .cont .ct .status 273 | { 274 | width: 25%; 275 | display: flex; 276 | justify-content: center; 277 | } 278 | .cont .cd .db 279 | { 280 | height: 100%; 281 | width:100%; 282 | display: flex; 283 | align-items: center; 284 | cursor: pointer; 285 | background-color: transparent; 286 | border: 0; 287 | color: white; 288 | 289 | } 290 | .cont .cd .db .d1{ 291 | width: 50%; 292 | /* height: max-content; */ 293 | display: flex; 294 | align-items: center; 295 | justify-content: center; 296 | hyphens: manual; 297 | overflow-wrap: anywhere; 298 | } 299 | .cont .cd .db .d2{ 300 | width: 25%; 301 | display: flex; 302 | flex-direction: column; 303 | align-items: center; 304 | } 305 | .cont .cd .db .d3{ 306 | width: 25%; 307 | display: flex; 308 | flex-direction: column; 309 | align-items: center; 310 | } 311 | .cont .cd .bt1 312 | { 313 | display: flex; 314 | flex-direction: column; 315 | align-items: end; 316 | /* margin-left: 1%; */ 317 | position: absolute; 318 | width: max-content; 319 | right: 10%; 320 | justify-content: right; 321 | } 322 | .cont .cd .bt1 button{ 323 | height: 40px; 324 | width: 80px; 325 | cursor: pointer; 326 | background-color:rgb(68, 226, 147) ; 327 | border: 0; 328 | color: white; 329 | border-radius: 20px; 330 | font-size: 15px; 331 | font-weight: bold; 332 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |