Files

79 lines
2.7 KiB
CSS
Raw Permalink Normal View History

2026-09-07 12:21:53 +02:00
.inline-form { display: flex; gap: 0.6em; flex-wrap: wrap; margin-top: 0.6em; }
.inline-form input { flex: 1; min-width: 220px; }
2026-09-07 13:00:59 +02:00
.tab-nav {
display: flex; gap: 0.4em; padding: 0.6em 1.5em 0;
background: var(--paper-2); border-bottom: 2px solid var(--line);
}
.tab-link {
font-family: 'Nunito', sans-serif; font-weight: 700; text-decoration: none;
color: var(--ink-soft); padding: 0.6em 1.1em; border-radius: 10px 10px 0 0;
border: 2px solid transparent; border-bottom: none; margin-bottom: -2px;
}
.tab-link.active { background: var(--paper); border-color: var(--line); color: var(--rust); }
.tab-link:hover:not(.active) { background: rgba(232,184,75,0.15); }
2026-09-07 12:21:53 +02:00
.friend-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 1.2em;
margin-top: 1em;
}
.friend-card {
background: var(--paper-2);
border-radius: var(--radius);
box-shadow: var(--shadow);
padding: 1.2em;
position: relative;
text-align: center;
}
.friend-card .tape { top: -10px; left: 50%; transform: translateX(-50%) rotate(-3deg); }
2026-09-07 13:00:59 +02:00
.order-controls {
display: flex; align-items: center; justify-content: center; gap: 0.5em;
margin-bottom: 0.4em;
}
.order-controls button { font-size: 1rem; padding: 0.15em 0.5em; line-height: 1; }
.order-num { font-family: 'Caveat', cursive; font-size: 1.2rem; color: var(--ink-soft); min-width: 1.4em; }
2026-09-07 12:21:53 +02:00
.friend-thumb {
width: 84px; height: 84px; border-radius: 50%;
object-fit: cover; border: 4px solid #fff; box-shadow: var(--shadow);
margin-bottom: 0.5em;
}
.friend-thumb.placeholder {
display: flex; align-items: center; justify-content: center;
background: var(--rose); color: #fff; font-size: 1.8rem; font-family: 'Caveat', cursive;
}
.friend-card h3 { margin-bottom: 0.15em; }
.badge {
display: inline-block; font-size: 0.72rem; font-weight: 700; border-radius: 999px;
padding: 0.15em 0.7em; margin-bottom: 0.6em;
}
.badge.on { background: var(--sage); color: #245a3a; }
.badge.off { background: #eee; color: #888; }
.friend-actions { display: flex; gap: 0.4em; justify-content: center; flex-wrap: wrap; margin-top: 0.6em; }
.friend-actions button, .friend-actions a.btn { font-size: 0.85rem; padding: 0.5em 1em; }
.modal-backdrop {
position: fixed; inset: 0; background: rgba(75,59,107,0.35);
display: flex; align-items: center; justify-content: center; z-index: 50; padding: 1em;
}
.modal { width: 100%; max-width: 420px; }
2026-09-07 12:46:58 +02:00
.transfer-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.4em;
}
.transfer-row input[type="file"] { margin-top: 0.3em; }
.saved-msg2 {
margin-top: 0.6em; color: #3a8a5a; font-weight: 700; font-size: 0.9rem;
opacity: 0; transition: opacity 0.3s;
}
.saved-msg2.show { opacity: 1; }