-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.scss
More file actions
86 lines (70 loc) · 918 Bytes
/
resume.scss
File metadata and controls
86 lines (70 loc) · 918 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
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
$gray: #858585;
body {
font-family: 'Open Sans', Arial;
font-size: 12px;
}
header {
margin-top: 4em;
text-align: center;
}
h1 {
font-weight: normal;
}
h2 {
border-bottom: solid $gray 1px;
font-size: 1.25em;
padding-bottom: 0.25em;
}
#basicData {
margin-bottom: 4em;
.row {
display: flex;
width: 100%;
}
.label, .value {
margin: 0;
padding: 0 0.5ex;
width: 50%;
}
.label {
text-align: right;
&:after {
content: ':';
}
}
}
.history {
.row {
display: table-row;
}
.dateRange {
display: table-cell;
padding-bottom: 1em;
padding-right: 2ex;
white-space: nowrap;
}
.value {
padding-bottom: 1em;
}
}
ul {
display: flex;
flex-wrap: wrap;
padding-bottom: 1em;
width: 100%;
li {
width: 33%;
}
}
#conferences li {
width: 45%;
}
footer {
bottom: 0;
color: $gray;
font-size: 0.75em;
left: 0;
position: absolute;
right: 0;
text-align: center;
}