-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
94 lines (82 loc) · 1.59 KB
/
styles.css
File metadata and controls
94 lines (82 loc) · 1.59 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* ===== Color Palette ===== */
:root {
--primary: #662c00;
--primary-light: #804000;
--bg: #f5f5f5;
--text: #222;
--radius: 8px;
}
/* ===== Global ===== */
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: var(--bg);
color: var(--text);
margin: 0;
padding: 0;
line-height: 1.7;
}
/* ===== Header ===== */
header {
background-color: var(--primary);
color: white;
text-align: center;
padding: 60px 20px;
}
header h1 {
font-size: 3rem;
margin: 0;
}
header .tagline {
font-size: 1.3rem;
opacity: 0.9;
margin-top: 10px;
}
/* ===== Layout ===== */
.container {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
}
section {
background: white;
padding: 30px;
border-radius: var(--radius);
margin-bottom: 30px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
section h2 {
color: var(--primary);
margin-top: 0;
}
/* ===== Buttons ===== */
button {
background-color: var(--primary);
color: white;
padding: 14px 28px;
border: none;
border-radius: var(--radius);
font-size: 1rem;
cursor: pointer;
transition: background-color .2s ease, transform .15s ease;
}
button:hover {
background-color: var(--primary-light);
transform: translateY(-2px);
}
.download-btn {
display: flex;
justify-content: center;
margin-top: 20px;
}
/* ===== Footer ===== */
footer {
background-color: var(--primary);
color: white;
text-align: center;
padding: 20px;
margin-top: 60px;
}
a {
text-decoration: none;
color: inherit;
}