2024-08-04 03:32:30 -04:00
|
|
|
body {
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
background-color: #111;
|
|
|
|
margin: 0;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p, h1, h2, h3, h4, h5 {
|
|
|
|
color: aliceblue
|
|
|
|
}
|
|
|
|
|
|
|
|
.percent {
|
|
|
|
color: aliceblue
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
max-width: 700px;
|
|
|
|
margin: auto;
|
|
|
|
/* background: white; */
|
2024-08-04 15:13:45 -04:00
|
|
|
/*! padding: 20px; */
|
2024-08-04 03:32:30 -04:00
|
|
|
border-radius: 0px;
|
2024-08-04 15:13:45 -04:00
|
|
|
/*! box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
|
2024-08-04 03:32:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#drop-area {
|
|
|
|
/*! border: 2px solid #00ff00; */
|
|
|
|
/*! border-radius: 6px; */
|
|
|
|
/*! padding-left: 10px; */
|
|
|
|
/*! padding-right: 10px; */
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
width: fit-content;
|
|
|
|
margin: 0 auto; /* Center the element */
|
|
|
|
display: block; /* Ensure it behaves as a block-level element */
|
|
|
|
background: rgba(202,230,190,.75);
|
|
|
|
border: 1px solid #b7d1a0;
|
|
|
|
border-radius: 4px;
|
|
|
|
color: #468847;
|
|
|
|
cursor: pointer;
|
|
|
|
/*! display: inline-block; */
|
|
|
|
font-size: 24px;
|
|
|
|
padding: 28px 48px;
|
|
|
|
text-shadow: 0 1px hsla(0,0%,100%,.5);
|
|
|
|
transition: background-color .25s,width .5s,height .5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.button {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 10px 20px;
|
|
|
|
/* background: #; */
|
|
|
|
color: white;
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
/* margin-top: 10px; */
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-status {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.copy-button {
|
|
|
|
margin-top: 5px;
|
|
|
|
padding: 5px 10px;
|
|
|
|
background: #28a745;
|
|
|
|
color: white;
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
display: none; /* Hidden initially */
|
|
|
|
}
|
|
|
|
|
|
|
|
nav a, nav > ul
|
|
|
|
{
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#upload-status {
|
|
|
|
margin: 20px; /* Adjust as needed */
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-status {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2024-08-04 15:13:45 -04:00
|
|
|
border: 2px solid #eee; /* Optional styling for the status box */
|
|
|
|
padding: 5px; /* Optional padding */
|
|
|
|
/*! border-radius: 6px; */ /* Optional rounded corners */
|
2024-08-04 03:32:30 -04:00
|
|
|
/*! background-color: #f9f9f9; */ /* Optional background color */
|
|
|
|
}
|
|
|
|
|
|
|
|
.link-container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-left: auto; /* Pushes the link and button to the right */
|
|
|
|
}
|
|
|
|
|
|
|
|
.link {
|
|
|
|
color: #ffb6c1;
|
|
|
|
text-decoration: none; /* Remove underline from link */
|
|
|
|
margin-right: 5px; /* Space between link and button */
|
|
|
|
}
|
|
|
|
|
|
|
|
.link:hover {
|
|
|
|
text-decoration: underline; /* Optional: underline on hover */
|
|
|
|
}
|
|
|
|
|
|
|
|
.copy-button {
|
|
|
|
display: inline;
|
|
|
|
background-color: #5e5e5e; /* Button background color */
|
|
|
|
color: white; /* Button text color */
|
|
|
|
border: none; /* Remove border */
|
|
|
|
border-radius: 3px; /* Rounded corners for the button */
|
|
|
|
padding: 5px 10px; /* Button padding */
|
|
|
|
cursor: pointer; /* Pointer cursor on hover */
|
|
|
|
}
|
|
|
|
|
|
|
|
.copy-button:hover {
|
|
|
|
background-color: #404040; /* Darker shade on hover */
|
|
|
|
}
|
|
|
|
|
|
|
|
a:link {
|
|
|
|
color: #ffb6c1
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: #ffb6c1
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: #ffb6c1
|
|
|
|
}
|