Spaces:
Sleeping
Sleeping
File size: 2,461 Bytes
e184c79 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | /* General body styles */
body {
font-family: Arial, sans-serif;
background-color: #121212;
margin: 0;
padding: 0;
color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
/* Container styles */
.container {
background-color: #1e1e1e;
border-radius: 10px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
padding: 30px;
width: 400px;
text-align: center;
box-sizing: border-box;
}
/* Title styles */
h2 {
font-size: 26px;
margin-bottom: 20px;
color: #4CAF50;
text-transform: uppercase;
}
/* Form label styles */
label {
font-weight: bold;
display: block;
margin-bottom: 10px;
color: #f0f0f0;
}
/* Input field styles */
input[type="file"] {
padding: 12px;
margin: 12px 0;
background-color: #333;
color: #f0f0f0;
border: 1px solid #555;
border-radius: 4px;
width: 100%;
box-sizing: border-box;
}
/* Button styles */
input[type="submit"],
button {
background-color: #4CAF50;
color: #f0f0f0;
padding: 12px;
margin-top: 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
width: 100%;
box-sizing: border-box;
transition: background-color 0.3s ease;
}
input[type="submit"]:hover,
button:hover {
background-color: #45a049;
}
/* Result text styles */
.result {
font-size: 20px;
font-weight: bold;
margin-top: 20px;
}
.result.success {
color: #4CAF50;
}
.result.danger {
color: #E74C3C;
}
/* Link styles */
a {
color: #4CAF50;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Progress bar container */
#progressContainer {
margin-top: 20px;
}
#progressBar {
width: 100%;
height: 8px;
border-radius: 5px;
background-color: #555;
}
#progressText {
font-size: 14px;
color: #f0f0f0;
margin-top: 5px;
}
/* Mobile responsiveness */
@media (max-width: 600px) {
.container {
width: 90%;
padding: 20px;
}
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 0;
}
h1 {
color: #3498db;
}
p {
font-size: 1rem;
line-height: 1.5;
}
button {
padding: 10px 20px;
background-color: #3498db;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #2980b9;
}
|