1
0
الملفات
ghaymah-genai-exam/q4-static-site-deploy/site/style.css

49 أسطر
1.2 KiB
CSS

:root {
--ink: #1a2332;
--muted: #5b6675;
--accent: #0e9f8f;
--card: #ffffff;
--bg: linear-gradient(135deg, #f4f7fb 0%, #e8f1f2 100%);
}
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
font-family: "Segoe UI", Tahoma, system-ui, sans-serif;
background: var(--bg);
color: var(--ink);
}
.card {
background: var(--card);
max-width: 620px;
margin: 2rem;
padding: 2.5rem 2.75rem;
border-radius: 18px;
box-shadow: 0 20px 60px rgba(20, 40, 60, 0.12);
text-align: center;
}
.eyebrow {
margin: 0 0 0.5rem;
font-size: 0.8rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--accent);
font-weight: 700;
}
h1 { margin: 0.25rem 0 0.75rem; font-size: 2rem; line-height: 1.3; }
.highlight { color: var(--accent); }
.subtitle { color: var(--muted); line-height: 1.7; margin: 0 auto 1.75rem; max-width: 44ch; }
.badges { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.75rem; }
.badge {
background: #eef6f5;
color: #0b7267;
border: 1px solid #d3e9e6;
padding: 0.4rem 0.9rem;
border-radius: 999px;
font-size: 0.85rem;
font-weight: 600;
}
.footer { color: var(--muted); font-size: 0.8rem; margin: 0; }