Files
Fatima/static/styles.css
T

257 lines
9.5 KiB
CSS
Raw Normal View History

:root {
color-scheme: light;
--paper: #f6f4ef;
--ink: #17211d;
--muted: #6c756f;
--line: #dcded8;
--accent: #d7603e;
--green: #274e42;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
background: var(--paper);
color: var(--ink);
font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
-webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
.eyebrow {
margin: 0 0 4px;
color: var(--accent);
font-size: 11px;
font-weight: 800;
letter-spacing: .11em;
text-transform: uppercase;
}
.login-page {
background: var(--green);
min-height: 100dvh;
}
.login-shell {
display: grid;
min-height: 100dvh;
place-items: center;
padding: max(24px, env(safe-area-inset-top)) 22px max(24px, env(safe-area-inset-bottom));
}
.login-card {
width: min(100%, 390px);
padding: 32px 24px 28px;
border-radius: 26px;
background: var(--paper);
box-shadow: 0 24px 70px #0b1c174d;
}
.brand-mark {
display: grid;
width: 52px;
height: 52px;
margin-bottom: 24px;
place-items: center;
border-radius: 16px;
background: var(--accent);
color: white;
font-size: 20px;
font-weight: 850;
}
.login-card h1 { margin: 0; font-size: 32px; letter-spacing: -.04em; }
.login-copy { margin: 8px 0 24px; color: var(--muted); }
.login-card label { display: block; margin: 16px 0 7px; font-size: 13px; font-weight: 750; }
.login-card input {
width: 100%;
min-height: 50px;
padding: 0 14px;
border: 1px solid var(--line);
border-radius: 13px;
background: white;
color: var(--ink);
font-size: 16px;
outline: none;
}
.login-card input:focus { border-color: var(--green); box-shadow: 0 0 0 3px #274e421f; }
.login-card button {
width: 100%;
min-height: 52px;
margin-top: 24px;
border: 0;
border-radius: 14px;
background: var(--green);
color: white;
font-weight: 800;
}
.form-error { padding: 11px 12px; border-radius: 10px; background: #f8ded7; color: #8b2e18; font-size: 13px; }
.app-shell { height: 100dvh; overflow: hidden; }
.calendar-panel { height: 70dvh; display: flex; flex-direction: column; }
.calendar-header {
display: flex;
flex: 0 0 auto;
align-items: center;
justify-content: space-between;
padding: max(14px, env(safe-area-inset-top)) 16px 10px;
}
.calendar-header h1 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.header-actions { display: flex; align-items: center; gap: 7px; }
.header-actions form { margin: 0; }
.logout-button, .today-button {
min-height: 36px;
padding: 0 13px;
border: 1px solid var(--line);
border-radius: 999px;
background: transparent;
color: var(--ink);
font-size: 12px;
font-weight: 750;
}
.weekday-row, .week { display: grid; grid-template-columns: repeat(7, 1fr); }
.weekday-row { flex: 0 0 auto; padding: 7px 9px; border-bottom: 1px solid var(--line); }
.weekday-row span { color: var(--muted); font-size: 10px; font-weight: 800; text-align: center; text-transform: uppercase; }
.weeks { flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior-y: contain; scroll-behavior: auto; scroll-snap-type: y proximity; -webkit-overflow-scrolling: touch; }
.week { min-height: 76px; border-bottom: 1px solid var(--line); scroll-snap-align: start; }
.day {
position: relative;
display: flex;
min-width: 0;
padding: 12px 2px;
flex-direction: column;
align-items: center;
justify-content: center;
border: 0;
border-right: 1px solid var(--line);
background: transparent;
color: var(--ink);
font-size: 16px;
font-weight: 650;
}
.day-number { line-height: 1; }
.day-amount { min-height: 12px; margin-top: 6px; font-size: 9px; font-weight: 800; letter-spacing: -.02em; }
.day.has-amount { background: #ccebd6; color: #173d2c; }
.day.has-amount.is-weekend { color: #9b432d; }
.day.is-vacation, .day.has-amount.is-vacation { background: #f8d5ad; color: #643912; }
.day.is-sick, .day.has-amount.is-sick { background: #fff0a8; color: #594a09; }
.day:last-child { border-right: 0; }
.day.is-weekend { color: var(--accent); }
.day.is-today::after { content: ""; position: absolute; bottom: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.day.is-selected, .day.has-amount.is-selected, .day.is-vacation.is-selected, .day.is-sick.is-selected { background: var(--green); color: white; }
.day.is-selected::after { background: white; }
.day:active { background: #e8e9e3; }
.day.is-selected:active { background: var(--green); }
.detail-panel {
height: 30dvh;
padding: 14px 16px max(10px, env(safe-area-inset-bottom));
border-top: 1px solid #355e51;
background: var(--green);
color: white;
}
.detail-panel .eyebrow { color: #f19c7f; }
.selected-date { margin: 4px 0 2px; font-family: ui-serif, Georgia, serif; font-size: clamp(21px, 6vw, 30px); line-height: 1.05; letter-spacing: -.03em; }
.today-button { border-color: #6d897f; color: white; }
.calendar-header .today-button { border-color: var(--green); color: var(--green); }
.amount-controls[hidden] { display: none; }
.status-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.amount-row { display: grid; grid-template-columns: auto auto auto minmax(0, 1fr); gap: 5px; margin-top: 7px; }
.amount-row > button, .status-options button, .custom-amount-form > button {
min-height: 34px;
border: 1px solid #789187;
border-radius: 10px;
background: #345f51;
color: white;
font-size: 12px;
font-weight: 800;
}
.status-options button { background: transparent; }
.status-options button.is-active { border-color: white; background: white; color: var(--green); }
.amount-row > button { padding: 0 8px; }
.custom-amount-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 5px; align-items: center; }
.amount-input { display: flex; height: 34px; align-items: center; border-radius: 10px; background: white; color: var(--ink); overflow: hidden; }
.amount-input span { padding-left: 9px; font-size: 13px; }
.amount-input input { width: 100%; min-width: 0; height: 100%; padding: 0 8px 0 3px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 16px; }
.custom-amount-form > button { padding: 0 13px; }
.report-row { display: flex; justify-content: flex-end; margin-bottom: 7px; }
.delete-row { display: flex; justify-content: flex-end; margin-top: 7px; }
.report-button {
display: flex;
min-height: 32px;
padding: 0 14px;
align-items: center;
justify-content: center;
border: 1px solid #9bb1a9;
border-radius: 10px;
background: #466f61;
color: white;
font-size: 11px;
font-weight: 800;
text-decoration: none;
}
.report-row .report-button { min-width: 92px; }
.delete-row button {
min-height: 28px;
padding: 0 10px;
border: 1px solid #8e6f66;
border-radius: 8px;
background: transparent;
color: #d9b1a5;
font-size: 10px;
font-weight: 650;
}
.delete-row button:active { background: #623d33; color: white; }
.save-status { min-height: 14px; margin: 5px 0 0; color: #c9d6d1; font-size: 10px; }
.report-page { min-height: 100dvh; background: var(--paper); }
.report-shell { width: min(100%, 560px); min-height: 100dvh; margin: 0 auto; padding: max(14px, env(safe-area-inset-top)) 18px max(24px, env(safe-area-inset-bottom)); }
.report-header { display: flex; align-items: center; justify-content: space-between; }
.report-header form { margin: 0; }
.back-button { color: var(--green); font-size: 13px; font-weight: 800; text-decoration: none; }
.report-intro { padding: 36px 2px 22px; }
.report-intro h1 { margin: 0; font-family: ui-serif, Georgia, serif; font-size: 38px; letter-spacing: -.04em; }
.report-intro > p:last-child { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.year-navigation { display: grid; grid-template-columns: 42px 1fr 42px; gap: 8px; align-items: center; }
.year-navigation h1 { text-align: center; }
.year-navigation a {
display: grid;
width: 42px;
height: 42px;
place-items: center;
border: 1px solid var(--line);
border-radius: 50%;
background: white;
color: var(--green);
font-size: 20px;
font-weight: 800;
text-decoration: none;
}
.year-navigation a:active { background: #e8e9e3; }
.report-categories { display: grid; gap: 10px; }
.report-card { padding: 18px; border: 1px solid var(--line); border-radius: 18px; }
.report-card--worked { background: white; }
.report-card--vacation { background: #f8d5ad; border-color: #efbd84; }
.report-card--sick { background: #fff0a8; border-color: #ead66f; }
.category-title { display: flex; align-items: center; gap: 8px; }
.category-title h2 { margin: 0; font-size: 14px; }
.category-swatch { width: 10px; height: 10px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); }
.report-card--vacation .category-swatch { background: #e98b3d; border: 0; }
.report-card--sick .category-swatch { background: #d8b91f; border: 0; }
.category-amount { margin: 14px 0 2px; font-family: ui-serif, Georgia, serif; font-size: 30px; font-weight: 700; letter-spacing: -.03em; }
.category-days { margin: 0; color: #59635e; font-size: 12px; }
.report-total { display: flex; align-items: end; justify-content: space-between; margin-top: 16px; padding: 20px; border-radius: 18px; background: var(--green); color: white; }
.report-total .eyebrow { color: #f19c7f; }
.total-amount { margin: 4px 0 0; font-family: ui-serif, Georgia, serif; font-size: 32px; }
.total-days { margin: 0 0 5px; color: #c9d6d1; font-size: 12px; }
@media (min-width: 700px) {
.app-shell { width: min(100%, 520px); margin: 0 auto; border-inline: 1px solid var(--line); }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } }