PDF-Tool-1.05
by velo_ninja
HTML
<!DOCTYPE html>
<html>
<head>
<title>Multiple PDFs/Base64 to Zip</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
.section {
position: relative; /* Set section as a positioning context */
min-width: 800px;
margin: 20px auto;
padding: 40px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.second-section {
min-width: 800px;
min-height: 200px;
background-color: #ccc;
border-radius: 10px;
margin: 20px auto;
padding: 40px;
}
.box-container {
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
margin-bottom: 20px;
}
.file-selector, .base64-input, .bundle-list {
flex: 1;
height: 400px;
border: 2px solid #ccc;
border-radius: 5px;
padding: 20px;
background-color: #f9f9f9;
box-shadow: 0 2px 5px rgba(10, 50, 0, 0.8);
transition: transform 0.3s;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.file-selector:hover, .base64-input:hover, .bundle-list:hover {
transform: translateY(-5px);
border: 2px solid #ccc;
border-radius: 5px;
padding: 20px;
}
select, textarea {
width: 100%;
height: calc(100% - 90px);
padding: 8px 10px;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #fff;
font-size: 14px;
}
.btn {
padding: 10px 20px;
background-color: rgba(150, 50, 0, 0.9);
color: white;
text-align: center;
text-decoration: none;
font-size: 16px;
cursor: pointer;
border: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.btn:hover {
background-color: rgba(10, 50, 0, 0.8);
...