Files
coms3011a-lab1/app/globals.css
2026-08-05 01:10:09 +02:00

36 lines
670 B
CSS

:root {
--primary-bg: linear-gradient(to bottom, #38bdf8, #0ea5e9);
--card-bg: #dae4f0;
--text-dark: #0f172a;
--text-light: #e0f2fe;
--accent: #0284c7;
}
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
background: var(--primary-bg);
}
h1, h2, h3 {
font-weight: 900;
letter-spacing: 2px;
}
/* ✅ Consistent placeholder styling */
input::placeholder,
textarea::placeholder {
color: #6b7280; /* same grey as Title/Description */
font-family: inherit;
font-size: 14px;
}
/* ✅ Style the dropdown placeholder option */
select option[value=""] {
color: #6b7280; /* same grey */
font-family: inherit;
font-size: 14px;
}