48 lines
841 B
CSS
48 lines
841 B
CSS
/* bookmark/bookmark/static/style.css */
|
|
.kiosk {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
padding: var(--space-lg);
|
|
gap: var(--space-md);
|
|
text-align: center;
|
|
}
|
|
|
|
.kiosk__preview {
|
|
width: min(90vw, 640px);
|
|
aspect-ratio: 4 / 3;
|
|
background: var(--color-surface);
|
|
border-radius: var(--radius);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.kiosk__preview img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.kiosk__status {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.kiosk__hint {
|
|
color: var(--color-muted);
|
|
}
|
|
|
|
.kiosk__button {
|
|
padding: var(--space-md) var(--space-lg);
|
|
font-size: 1.25rem;
|
|
border: none;
|
|
border-radius: var(--radius);
|
|
background: var(--color-accent);
|
|
color: var(--color-bg);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.kiosk__button:active {
|
|
opacity: 0.8;
|
|
}
|