#e8e8e8
1.file-upload-form { 2 width: fit-content; 3 height: fit-content; 4 display: flex; 5 align-items: center; 6 justify-content: center; 7} 8.file-upload-label input { 9 display: none; 10} 11.file-upload-label svg { 12 height: 50px; 13 fill: rgb(82, 82, 82); 14 margin-bottom: 20px; 15} 16.file-upload-label { 17 cursor: pointer; 18 background-color: #ddd; 19 padding: 30px 70px; 20 border-radius: 40px; 21 border: 2px dashed rgb(82, 82, 82); 22 box-shadow: 0px 0px 200px -50px rgba(0, 0, 0, 0.719); 23} 24.file-upload-design { 25 display: flex; 26 flex-direction: column; 27 align-items: center; 28 justify-content: center; 29 gap: 5px; 30} 31.browse-button { 32 background-color: rgb(82, 82, 82); 33 padding: 5px 15px; 34 border-radius: 10px; 35 color: white; 36 transition: all 0.3s; 37} 38.browse-button:hover { 39 background-color: rgb(14, 14, 14); 40} 41
408 views
408 views
Comments
MIT License