blob: 3a6b1390c4537bae7b72d40c7e24cf832a1ff638 (
plain)
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
.head {
@extend %clearfix;
@include constrain(780px);
margin-top: 4em;
}
.resume main header {
width: 100%;
h1 {
@include fontsize(36);
text-transform: uppercase;
letter-spacing: 3px;
font-weight: 600;
line-height: 1;
margin-bottom: 0;
color: #444;
}
h2 {
margin-top: .5em !important;
@include fontsize(14);
text-transform: uppercase;
letter-spacing: 1px;
font-style: italic;
color: #333;
}
@include breakpoint(gamma) {
width: 60%;
float: left;
text-align: left;
margin-top: .5em;
}
}
.h-resume {
h3,h2 {
@include constrain_narrow;
text-align: left;
}
h3 {
font-family: sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.75rem;
margin-top: 4em;
margin-bottom: 3em;
border-bottom: 1px dotted #333;
}
h2 {
margin-top: 2.5em;
margin-bottom: .25em;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 1rem;
}
h2 a, h2 a:visited {
text-decoration: none;
color: #444;
}
}
.meta {
@include constrain_narrow;
text-align: left;
margin-bottom: 1em;
time{
display: inline;
}
}
.contact {
margin: 2em 0 1.5em;
@include constrain_narrow;
li {
display: block;
@extend %clearfix;
}
@include breakpoint(gamma) {
width: 160px;
float: right;
margin: 1.9em 0 1.5em;
li {
display: block;
}
}
h6, a {
font-size: 13px;
font-size: 0.8125rem;
line-height: 1.8;
margin: 0;
display: block;
float: left;
}
h6 {
font-size: 11px;
font-size: 0.6875rem;
line-height: 2.1;
text-transform: uppercase;
letter-spacing: 1px;
&:after {
content: ":";
margin-right: 5px;
}
}
a {
font-family: sans-serif;
}
}
.publications-list {
list-style-type: none;
text-align: left;
@include constrain_narrow;
h2 {
@include smcaps;
@include fontsize(11);
font-weight: 400;
text-align: left;
border-bottom: 1px dotted #333;
margin-bottom: 2em;
&:first-of-type {
margin-top: 3em;
}
}
h3, time {
display: inline;
}
h3 {
@include fontsize(20);
@include fancy_serif;
}
time:before {
content: "\00a0 \00a0"
}
ul {
list-style-type: none;
}
}
.publisher {
margin-top: 1em;
margin-bottom: 1em;
}
.pub-title {
margin-bottom: 1.75em;
a {
color: $brown;
text-decoration: none;
font-weight: 400;
}
}
.resume h6 {
@include constrain_narrow;
text-align: left;
font-weight: 400;
@include fontsize(12);
}
.toc {
@include constrain_narrow;
text-align: left;
a {
color: $brown;
}
ul {
list-style-type: none;
}
}
|