-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.css
133 lines (112 loc) · 2.01 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
html {
background: #e6e9e9;
}
body {
background: #fff;
margin: 0 auto; /* centers horizontally, 0 top bottom*/
max-width: 80%;
padding: 2em;
font-family: “Helvetica Neue”, Helvetica, Arial, sans-serif;
font-weight: 200;
color: #4D4D4D;
}
h1 {
font-family: "HelveticaNeue-UltraLight", “Helvetica Neue”, Helvetica, Arial, sans-serif;
font-weight: 100;
font-size: 5em;
margin-bottom: 0.3em;
margin-top: 0.2em;
}
h2 {
background-color: #582b2b;
color:white;
font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue";
padding: 0 0.3em; /*left right padding*/
}
h3, p {
font-family: “Helvetica Neue”, Helvetica, Arial, sans-serif;
font-weight: 200;
color: #333333;
}
h3 {
font-weight: bold;
margin:0;
}
.name {
float: left;
}
.header {
background-color: blue;
height: 20%;
}
.contact {
float: right;
margin-top: 2.2em; /*TODO: align correctly?*/
}
.contact > p {
margin: 0 auto;
}
.resume-body {
display: inline-block;
}
.colored {
color: #582b2b;
font-weight: 300;
}
.sidebar {
float: left;
max-width: 20%; /*max-width good for smaller screens*/
text-align: right;
margin-right: 1em;
}
ul {
margin: 0;
padding-left:0;
}
.main {
float: left;
max-width: 77%;
}
.desc-header {
display:flex;
}
.company {
display: flex;
}
.team {
margin: 0.3em 0 0 0.5em ;
font-size:.8em;
}
.time {
margin-left: auto;
font-size: .9em;
}
.role {
font-style: italic;
}
.summary {
margin-top:0.2em;
margin-bottom:.9em;
}
@media screen and (max-width: 785px) {
h1 {
font-size: 4em;
margin-top: .5em;
}
.sidebar {
margin-right: .5em;
}
}
@media screen and (max-width: 665px) {
h1 {
font-size: 2em;
margin-top:1.7em;
}
h2, h3, p, ul, .time {
font-size: .8em;
}
.contact {
margin-top: 3em;
}
}
}