-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (49 loc) · 951 Bytes
/
style.css
File metadata and controls
49 lines (49 loc) · 951 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
@font-face {
font-family: 'charter';
src: url('charter_regular-webfont.eot');
src: url('charter_regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'charter';
src: url('charter_italic-webfont.eot');
src: url('charter_italic-webfont.woff') format('woff');
font-weight: normal;
font-style: italic;
}
body {
width: 50%;
margin-left: 25%;
font-size: 18px;
font-family: 'charter';
}
h1 {
border-left: 5px solid #cc99cc;
padding-left: 0.2em;
line-height: 38px;
margin-bottom: 0.1em;
font-size: 200%;
}
a {
color: black;
text-decoration: none;
border-bottom: 2px solid #cc99cc;
}
.date {
font-size: 93%;
font-style: italic;
}
@media all and (max-width: 1000px) {
body {
margin-left: 1em;
margin-right: 1em;
width: calc(100% - 2em);
font-size: 28px;
}
h1 {
font-size: 250%;
line-height: 100%;
margin-bottom: 0.2em;
}
}