summaryrefslogtreecommitdiff
path: root/resume.css
blob: 914e296e5d78370fbd2ff173209b1e0fbb4ff574 (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
body {
    font-size: 14px !important;
}

header {
    padding-bottom: 1rem;
}

#actions_container {
    padding-bottom: 1rem;
    
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

#resume {
    position: relative;
    text-align: left;
    background-color: white;
    border-radius: 2px;
    color: black;
    font-family: Arial,Helvetica Neue,Helvetica,sans-serif !important; 
    line-height: 1.2rem;
    padding-bottom: 1rem;
}

#resume_button_container {
    position: absolute;
    top: 0;
    right: 1rem;
    text-align: right;
    
}

#resume_button_container > button {
    border: none;
    background-color: transparent;
}

#resume_button_container > button:hover {
    cursor: pointer;
    opacity: 0.8;
}

#resume.resume_fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    padding: 2rem;
    width: calc(100vw - 4rem);
    height: calc(100vh - 4rem);
    overflow: auto;
}


#resume > div {
    text-align: left;
}

#resume > header {
    width: 100%;
    text-align: center;
}

#resume > header > h1 {
    font-size: 1.7rem;
    padding: 0;
    margin: 0;
	font-weight: 500;
}

#resume > header > h3 {
    padding-top: 0.8rem;
	padding-bottom: 0.8rem;
    margin: 0;
    color: #396EB01;
	font-weight: 400;
	font-variant: small-caps;
	font-size: 1.25rem;
}

#resume > header > div > span {
    padding-right: 1rem;
}

.resume_section > h2 {
    font-size: 1.25rem !important;
    font-variant: small-caps;
    font-weight: bold;
    padding: 0;
    margin: 0;
	padding: 0.5rem;
    background-color: #2E4C6D;
	color: white;
	border-radius: 2px;
}

.resume_section > div {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.skill-section {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.skill-section > b {
    width: 25%;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.skill-section > div {
    width: 75%;
}

.experience-header > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}