-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
142 lines (110 loc) · 2.59 KB
/
style.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
134
135
136
137
138
139
140
141
142
/* Make a black background and set default font properties */
html, body {
background: #181818;
font-family: 'Lato', helvetica, arial, sans-serif;
font-size: 16px;
color: #222;
}
/* Make the document look like an 8x11 resume sheet */
#resume-body {
width: 100%;
max-width: 800px;
background: #ededed;
margin: 35px auto;
}
/* Defining anchor offset */
.custom-anchor {
display: block;
position: relative;
top: -250px;
visibility: hidden;
}
/* Every section will have these properties */
.resume-section {
padding: 25px, 35px;
border-bottom: 2px solid green;
background: #ededed;
overflow: hidden;
padding-top: 15px;
}
/* Resume section title properties */
.section-title {
float: left;
width: 25%;
padding-left: 10px;
}
.section-title h1 {
font-family: 'Rokkitt', Helvetica, Arial, sans-serif;
font-style: bold;
font-size: 1.5em;
color: green;
}
/* Resume section content properties */
.section-content {
float: right;
width: 70%;
padding-right: 15px;
}
.section-content h3 {
font-family: 'Rokkitt', Helvetica, Arial, sans-serif;
font-size: 1.1em;
color: #000000;
}
.section-content p, li {
font-family: Georgia, 'Times New Roman', Times, serif;
padding-bottom: 10px;
}
/* Control the banner */
.resume-section.banner {
/* Banner Properties */
overflow: hidden;
background-color: lightgray;
position: fixed;
top: 0;
width: 800px;
/* Text properties*/
font-family: 'Rokkitt', Helvetica, Arial, sans-serif;
text-align: center;
}
/* RESUME PROFILE HEADER SECTION */
/* This specific resume section will be a little different from the rest, justifying the use of IDs here */
#resumeprofile.resume-section {
padding: 25px, 35px;
border-bottom: 2px solid green;
background: rgb(169, 192, 216);
/* background color is different*/
overflow: hidden;
}
/* Align headshot div */
#headshot {
width: 12.5%;
float: left;
margin-left: 15px;
margin-right: 30px;
padding-top: 30px;
}
/* Customize headshot image itself */
#headshot img {
width: 100%;
height: auto;
border-radius: 50px;
}
/* Modify name heading */
#name-occupation h1 {
font-size: 2.5em;
font-weight: 700;
font-family: 'Rokkitt', Helvetica, Arial, sans-serif;
margin-bottom: -6px;
}
/* Modify occupation heading */
#name-occupation h2 {
font-size: 2em;
margin-left: 2px;
font-family: 'Rokkitt', Helvetica, Arial, sans-serif;
}
/* Center contact-details */
#contact-details {
margin: auto;
width: 75%;
font-size: 0.9em;
}