-
Notifications
You must be signed in to change notification settings - Fork 7
/
resume.css
119 lines (116 loc) · 1.77 KB
/
resume.css
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
body {
margin: 0 auto;
font-family: Helvetica, Arial, sans-serif;
color: #444444;
line-height: 1;
max-width: 700px;
padding: 30px;
font-size: 16px;
font-weight: 200;
}
h1, h2, h3, h4 {
color: #111111;
font-weight: 400;
}
h1, h2, h3, h4, h5, p {
margin-bottom: 10px;
padding: 0;
}
h1 {
font-size: 2em;
margin-top: 0;
}
h2 {
font-size: 1.7em;
margin: 18px 0 0;
}
h3 {
font-size: 1.25em;
margin-top: .7em;
margin-bottom: .3em;
}
h4 {
margin-top: 0;
padding-top: 0px;
font-size: 1.1em;
font-style: italic;
}
h5 {
font-size: 1.125em;
line-height: 1.2em;
font-weight: 500;
}
img {
padding-left: 10px;
}
a {
color: #0099ff;
margin: 0;
padding: 0;
vertical-align: baseline;
}
a:hover {
text-decoration: none;
color: #ff6600;
}
a:visited {
color: purple;
}
ul, ol {
padding: 0;
margin: 0;
}
li ul, li ul {
margin-left: 24px;
}
p, ul, ol {
font-size: 1em;
line-height: 1.4em;
margin: .5em 0px;
/* max-width: 640px;*/
}
pre {
padding: 0px 24px;
max-width: 800px;
white-space: pre-wrap;
}
code {
font-family: Consolas, Monaco, Andale Mono, monospace;
line-height: 1.5;
font-size: 13px;
}
aside {
display: block;
float: right;
width: 390px;
}
blockquote {
border-left:.5em solid #eee;
padding: 0 2em;
margin-left:0;
max-width: 476px;
}
blockquote p {
color: #666;
max-width: 460px;
}
hr {
width: 540px;
text-align: left;
margin: 0 auto 0 0;
color: #999;
}
@media print {
body {
color: black;
max-width: auto;
font-size: 14px;
}
a:visited, a:link {
color: black;
text-decoration: none;
}
a[href]:not(.link):after {
content: ": " attr(href);
}
}