-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
49 lines (38 loc) · 757 Bytes
/
styles.css
File metadata and controls
49 lines (38 loc) · 757 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
body {
margin: 0;
font-family: system-ui, sans-serif;
background: #f5f7fa;
color: #111;
}
nav {
background: #111827;
color: white;
padding: 0.75rem 1rem;
}
nav a {
color: #9ca3af;
margin-left: 1rem;
text-decoration: none;
}
nav a.active { color: white; }
header { padding: 1rem; }
section { padding: 1rem; }
h2 { margin: 0 0 0.5rem; }
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
gap: 1rem;
}
.grid-small {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
iframe {
width: 100%;
height: 340px;
border: none;
background: white;
border-radius: 8px;
}
iframe.small { height: 200px; }
iframe.map { height: 420px; }
footer { padding: 1rem; font-size: 0.9rem; }