Skip to content

Commit f49699e

Browse files
committed
update css
1 parent 034ed1d commit f49699e

File tree

1 file changed

+48
-7
lines changed

1 file changed

+48
-7
lines changed

css/style.css

Lines changed: 48 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,65 @@
1+
:root {
2+
font-family: "Lucida Console", Monaco, monospace;
3+
font-size: 10pt;
4+
line-height: 1.4;
5+
}
6+
7+
body {
8+
margin: 1em auto;
9+
max-width: 1000px;
10+
}
11+
12+
header {
13+
padding-top: 10px;
14+
text-align: center;
15+
}
16+
17+
header strong {
18+
font-size: 26pt;
19+
font-weight: normal;
20+
color: #000;
21+
}
22+
123
main {
224
padding-bottom: 10px;
325
}
426

5-
main a {
27+
/* main content */
28+
29+
.hero {
30+
text-align: center;
31+
margin-top: 1em;
32+
}
33+
34+
.hero img {
35+
max-width: 300px;
36+
height: auto;
37+
display: block;
38+
margin: 0 auto 0.5em;
39+
}
40+
41+
.hero p {
42+
margin: 0.3em 0;
43+
}
44+
45+
/* links */
46+
47+
.links a {
648
color: #006eff;
49+
text-decoration: none;
750
}
851

9-
main a:hover {
52+
.links a:hover {
1053
background-color: #006eff;
1154
color: #fff;
1255
}
1356

14-
hr {
15-
border: 0;
16-
border-top: 1px solid #afafaf;
17-
}
57+
/* footer */
1858

1959
.site-footer {
2060
margin-top: 2em;
21-
font-size: 8pt;
2261
text-align: center;
62+
font-size: 8pt;
2363
color: #666;
2464
}
65+

0 commit comments

Comments
 (0)