-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
148 lines (125 loc) · 2.14 KB
/
styles.css
File metadata and controls
148 lines (125 loc) · 2.14 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f4f7fb;
color: #1f2937;
}
.hero {
background: linear-gradient(135deg, #0f172a, #2563eb);
color: white;
padding: 56px 24px;
}
.hero-inner {
max-width: 1150px;
margin: 0 auto;
}
.eyebrow {
margin: 0 0 10px;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 12px;
opacity: 0.9;
}
.hero h1 {
margin: 0 0 14px;
font-size: 2.7rem;
}
.hero-text {
max-width: 780px;
line-height: 1.7;
margin-bottom: 22px;
}
.hero-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.hero-actions button {
border: none;
border-radius: 10px;
padding: 12px 18px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
background: white;
color: #1d4ed8;
}
.hero-actions button:hover {
background: #dbeafe;
}
.page-shell {
max-width: 1150px;
margin: 0 auto;
padding: 28px 20px 40px;
}
.panel {
background: white;
border-radius: 18px;
padding: 28px;
margin-bottom: 22px;
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.panel h2 {
margin-top: 0;
color: #1d4ed8;
}
.summary-grid,
.card-grid,
.scope-grid,
.checklist-grid {
display: grid;
gap: 16px;
}
.summary-grid {
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card-grid {
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.scope-grid,
.checklist-grid {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card,
.scope-card,
.check-card {
background: #f8fafc;
border: 1px solid #dbeafe;
border-radius: 14px;
padding: 18px;
}
.card h3,
.scope-card h3,
.check-card h3 {
margin-top: 0;
margin-bottom: 10px;
color: #1d4ed8;
}
.card p,
.scope-card p,
.check-card p {
margin: 0;
line-height: 1.6;
}
.scope-card ul,
.check-card ul {
margin: 0;
padding-left: 20px;
line-height: 1.7;
}
.footer {
text-align: center;
padding: 20px;
color: #64748b;
}
@media (max-width: 700px) {
.hero h1 {
font-size: 2rem;
}
.panel {
padding: 20px;
}
}