-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
37 lines (30 loc) · 747 Bytes
/
style.css
File metadata and controls
37 lines (30 loc) · 747 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
body {
font-family: 'Segoe UI', sans-serif;
margin: 0; padding: 0;
background: #f7f8fa;
color: #222;
}
header {
background: #1a73e8;
color: white;
padding: 1em 2em;
}
header h1 { margin: 0; }
nav {
background: #f1f3f4;
padding: 1em 2em;
}
nav a {
margin-right: 1.5em;
text-decoration: none;
color: #1a73e8;
font-weight: 500;
}
nav a:hover { text-decoration: underline; }
main {
padding: 2em;
}
h2 { color: #1a73e8; margin-top: 1.5em; }
pre { background: #e8e8e8; padding: 1em; overflow-x: auto; }
code { background: #eee; padding: 0.2em 0.4em; border-radius: 4px; }
footer { background: #f1f3f4; padding: 1em 2em; text-align: center; margin-top: 2em; font-size: 0.9em; color: #555; }