-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (53 loc) · 1003 Bytes
/
Copy pathstyle.css
File metadata and controls
53 lines (53 loc) · 1003 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
51
52
53
body {
font-family: "Meiryo", sans-serif;
background: #f8fafc;
color: #222;
margin: 0;
padding: 0;
}
header {
padding: 2em 1em 1em;
background: #1377c7;
color: #fff;
text-align: center;
}
header h1 { margin-bottom: 0.2em; }
header .sub { font-size: 0.7em; opacity: 0.85; }
header .lead { font-size: 1.1em; margin-top: 0; }
nav {
text-align: center;
padding: 1em;
background: #e4eef8;
}
nav a {
color: #115599;
margin: 0 0.5em;
font-weight: bold;
text-decoration: none;
}
section {
max-width: 820px;
margin: 2em auto;
padding: 1em 1.5em;
background: #fff;
border-radius: 8px;
box-shadow: 2px 2px 8px #eee;
}
h2 { border-left: 0.3em solid #1377c7; padding-left: 0.5em; }
ul { padding-left: 1.5em; }
.work { margin-bottom: 1.5em; }
footer {
text-align: center;
padding: 1em;
color: #aaa;
font-size: 0.95em;
}
@media (max-width: 600px) {
section, header, nav {
padding-left: 0.5em;
padding-right: 0.5em;
}
section {
margin: 1em 0;
}
}