-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (46 loc) · 937 Bytes
/
styles.css
File metadata and controls
52 lines (46 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* ===== Layout Overrides ===== */
body {
margin: 24px;
/* Adds outer whitespace around sections */
background: #ffffff;
/* Keep clean white page background */
color: #222222;
}
/* ===== Section Panels ===== */
header,
main,
footer {
background: #ffffff;
border: 1px solid #e0e0e0;
border-radius: var(--radius);
padding: 16px;
margin-bottom: 16px;
}
/* Header has a distinct light-blue accent panel */
header {
background: #f2f6ff;
border-color: #d9e5ff;
}
/* ===== Text Spacing ===== */
h1,
h2 {
margin: 0 0 12px 0;
}
p {
margin: 0 0 16px 0;
color: var(--color-muted);
}
/* ===== Buttons ===== */
button {
padding: 10px 14px;
border: 1px solid var(--color-primary);
background: var(--color-primary);
color: #ffffff;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
transition: var(--transition);
}
button:hover {
opacity: 0.96;
}