-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
50 lines (44 loc) · 709 Bytes
/
index.css
File metadata and controls
50 lines (44 loc) · 709 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
/* index.css */
body {
font-family: 'Google Sans', 'Noto Sans', sans-serif;
margin: 0;
padding: 2rem;
background-color: #ffffff;
color: #111111;
line-height: 1.6;
}
h1, h2 {
text-align: center;
font-weight: 600;
}
p {
text-align: center;
max-width: 800px;
margin: 1em auto;
}
img {
max-width: 100%;
width: 90%;
height: auto;
display: block;
margin: 2em auto;
border-radius: 8px;
box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}
.section {
margin: 3em 0;
}
pre {
background: #f4f4f4;
padding: 1em;
border-radius: 6px;
max-width: 90%;
margin: 2em auto;
overflow-x: auto;
}
footer {
margin-top: 4em;
text-align: center;
font-size: 0.9em;
color: #666;
}