Trang chá»§
File upload
Save
Settings
Sign Up
Log In
Save
Settings
HTML
Copy
<div class="modal"> <div class="modal-header"> <div class="modal-logo"> <span class="logo-circle"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="419.116" viewBox="0 0 512 419.116"> <defs> <clipPath id="clip-folder-new"> <rect width="512" height="419.116" /> </clipPath> </defs> <g id="folder-new" clip-path="url(#clip-folder-new)"> <path id="Union_1" data-name="Union 1" d="M16.991,419.116A16.989,16.989,0,0,1,0,402.125V16.991A16.989,16.989,0,0,1,16.991,0H146.124a17,17,0,0,1,10.342,3.513L227.217,57.77H437.805A16.989,16.989,0,0,1,454.8,74.761v53.244h40.213A16.992,16.992,0,0,1,511.6,148.657L454.966,405.222a17,17,0,0,1-16.6,13.332H410.053v.562ZM63.06,384.573H424.722L473.86,161.988H112.2Z" fill="var(--c-action-primary)" stroke="" stroke-width="1" /> </g> </svg> </span> </div> <button class="btn-close"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" fill="var(--c-text-secondary)"/></svg> </button> </div> <div class="modal-body"> <h2 class="modal-title">Upload a file</h2> <p class="modal-description">Attach the file below</p> <button class="upload-area"> <span class="upload-area-icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="340.531" height="419.116" viewBox="0 0 340.531 419.116"> <g id="files-new" clip-path="url(#clip-files-new)"> <path id="Union_2" data-name="Union 2" d="M-2904.708-8.885A39.292,39.292,0,0,1-2944-48.177V-388.708A39.292,39.292,0,0,1-2904.708-428h209.558a13.1,13.1,0,0,1,9.3,3.8l78.584,78.584a13.1,13.1,0,0,1,3.8,9.3V-48.177a39.292,39.292,0,0,1-39.292,39.292Zm-13.1-379.823V-48.177a13.1,13.1,0,0,0,13.1,13.1h261.947a13.1,13.1,0,0,0,13.1-13.1V-323.221h-52.39a26.2,26.2,0,0,1-26.194-26.195v-52.39h-196.46A13.1,13.1,0,0,0-2917.805-388.708Zm146.5,241.621a14.269,14.269,0,0,1-7.883-12.758v-19.113h-68.841c-7.869,0-7.87-47.619,0-47.619h68.842v-18.8a14.271,14.271,0,0,1,7.882-12.758,14.239,14.239,0,0,1,14.925,1.354l57.019,42.764c.242.185.328.485.555.671a13.9,13.9,0,0,1,2.751,3.292,14.57,14.57,0,0,1,.984,1.454,14.114,14.114,0,0,1,1.411,5.987,14.006,14.006,0,0,1-1.411,5.973,14.653,14.653,0,0,1-.984,1.468,13.9,13.9,0,0,1-2.751,3.293c-.228.2-.313.485-.555.671l-57.019,42.764a14.26,14.26,0,0,1-8.558,2.847A14.326,14.326,0,0,1-2771.3-147.087Z" transform="translate(2944 428)" fill="var(--c-action-primary)"/> </g> </svg> </span> <span class="upload-area-title">Drag file(s) here to upload.</span> <span class="upload-area-description"> Alternatively, you can select a file by <br/><strong>clicking here</strong> </span> </button> </div> <div class="modal-footer"> <button class="btn-secondary">Cancel</button> <button class="btn-primary">Upload File</button> </div> </div>
CSS
Copy
*, *:after, *:before { box-sizing: border-box; } :root { --c-action-primary: #2e44ff; --c-action-primary-accent: #e9e5ff; --c-action-secondary: #e5e5e5; --c-text-primary: #0d0f21; --c-text-secondary: #6a6b76; --c-background-primary: #d0d1de; } body { font-family: "Inter", sans-serif; color: var(--c-text-primary); background-color: var(--c-background-primary); line-height: 1.5; } input, button, select, textarea { font: inherit; } .modal { width: 90%; max-width: 500px; margin-left: auto; margin-right: auto; margin-top: 10vh; margin-bottom: 10vh; background-color: #FFF; border-radius: 0.5rem; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); } .modal-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 1.5rem 1.5rem 1rem; } .logo-circle { width: 3.5rem; height: 3.5rem; display: flex; justify-content: center; align-items: center; border-radius: 50%; background-color: var(--c-action-primary-accent); } .logo-circle svg { max-width: 1.5rem; } .btn-close { display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 0.25rem; border: none; background-color: transparent; } .btn-close:hover, .btn-close:focus { background-color: var(--c-action-primary-accent); } .modal-body { padding: 1rem 1.5rem; } .modal-title { font-weight: 700; } .modal-description { color: var(--c-text-secondary); } .upload-area { margin-top: 1.25rem; border: none; background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23ccc' stroke-width='3' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e"); background-color: transparent; padding: 3rem; width: 100%; display: flex; flex-direction: column; align-items: center; } .upload-area:hover, .upload-area:focus { background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%232e44ff' stroke-width='3' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e"); } .upload-area-icon { display: block; width: 2.25rem; height: 2.25rem; } .upload-area-icon svg { max-height: 100%; max-width: 100%; } .upload-area-title { margin-top: 1rem; display: block; font-weight: 700; color: var(--c-text-primary); } .upload-area-description { display: block; color: var(--c-text-secondary); } .upload-area-description strong { color: var(--c-action-primary); font-weight: 700; } .modal-footer { padding: 1rem 1.5rem 1.5rem; display: flex; justify-content: flex-end; } .modal-footer [class*=btn-] { margin-left: 0.75rem; } .btn-secondary, .btn-primary { padding: 0.5rem 1rem; font-weight: 500; border: 2px solid var(--c-action-secondary); border-radius: 0.25rem; background-color: transparent; } .btn-primary { color: #FFF; background-color: var(--c-action-primary); border-color: var(--c-action-primary); }
JS
Copy