174 lines
3.2 KiB
CSS
174 lines
3.2 KiB
CSS
:root {
|
|
--primary-color: #e63946;
|
|
--bg-color: #ffe4e6; /* Light Pink */
|
|
--popup-bg: #ffccd5; /* Light Red */
|
|
--text-color: #2d3436;
|
|
--secondary-text: #636e72;
|
|
--border-color: rgba(0,0,0,0.05);
|
|
--font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-color);
|
|
color: var(--text-color);
|
|
font-family: var(--font-family);
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.admin-controls {
|
|
position: fixed;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
z-index: 100;
|
|
}
|
|
|
|
.admin-controls button {
|
|
background: rgba(255, 255, 255, 0.8);
|
|
border: none;
|
|
border-radius: 50%;
|
|
width: 36px;
|
|
height: 36px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
|
transition: all 0.2s ease;
|
|
color: var(--secondary-text);
|
|
}
|
|
|
|
.admin-controls button:hover {
|
|
background: #fff;
|
|
color: var(--primary-color);
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.container {
|
|
max-width: 500px;
|
|
width: 90%;
|
|
text-align: center;
|
|
padding: 2.5rem 2rem;
|
|
border-radius: 20px;
|
|
background: var(--popup-bg);
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.75rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1.5rem;
|
|
letter-spacing: -0.5px;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.image-preview-container {
|
|
width: 100%;
|
|
height: 250px;
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
border: 2px dashed rgba(0,0,0,0.1);
|
|
border-radius: 12px;
|
|
margin-bottom: 1.5rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.state-locked .image-preview-container {
|
|
cursor: default;
|
|
border-style: solid;
|
|
}
|
|
|
|
.image-preview-container img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
display: none;
|
|
}
|
|
|
|
.image-preview-container .placeholder-text {
|
|
color: var(--secondary-text);
|
|
font-size: 0.9rem;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.button-group {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
margin-top: 2rem;
|
|
position: relative;
|
|
min-height: 60px;
|
|
}
|
|
|
|
.btn {
|
|
padding: 0.75rem 1.75rem;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
border-radius: 10px;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: transform 0.1s ease, font-size 0.2s ease, background-color 0.2s ease;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.btn-yes {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
z-index: 10;
|
|
box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
|
|
}
|
|
|
|
.btn-yes:hover {
|
|
background-color: #d62839;
|
|
}
|
|
|
|
.btn-no {
|
|
background-color: #fff;
|
|
color: var(--text-color);
|
|
position: relative;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
#success-message {
|
|
display: none;
|
|
animation: fadeIn 0.8s ease forwards;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; transform: translateY(10px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
.success-text {
|
|
font-size: 1.25rem;
|
|
line-height: 1.6;
|
|
color: var(--primary-color);
|
|
font-weight: 700;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.redirect-hint {
|
|
margin-top: 2rem;
|
|
font-size: 0.85rem;
|
|
color: var(--secondary-text);
|
|
font-style: italic;
|
|
}
|
|
|
|
#image-input {
|
|
display: none;
|
|
}
|