Skip to content

Commit 7131678

Browse files
committed
Added resume, and phone header formatting
Had a version where the pdf displayed on the page, but didnt like how it wouldnt resize on the phone, so I did this version instead. I pushed that code to a branch called "unused" just in case i wanted it later.
1 parent 4680b05 commit 7131678

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
<a href="#projects">Projects</a>
2121
</div>
2222
<div class="navbar-row">
23-
<a href="#work">Experience</a>
23+
<a href="#work">Experience</a> |
24+
<a href="resume.pdf">Resume</a>
2425
</div>
2526
</nav>
2627

resume.pdf

129 KB
Binary file not shown.

style.css

+13-1
Original file line numberDiff line numberDiff line change
@@ -114,24 +114,36 @@ blockquote p {
114114
}
115115

116116
nav {
117-
font-size: 2vw;
117+
background: transparent;
118+
display: flex;
119+
justify-content: start;
120+
color: rgb(255, 255, 255);
121+
text-shadow: 2px 1px 2px rgb(255, 255, 255), 0 0 1em blue, 0 0 0.2em blue;
122+
font-size: 3vw;
123+
position: fixed;
124+
top: 0;
125+
width: 100%;
118126
}
119127
}
120128

121129

122130
/*code to change visited and hovering over links*/
131+
123132
a:link {
124133
color: green;
125134
background-color: transparent;
126135
text-decoration: none;
127136
}
128137

138+
139+
129140
a:visited {
130141
color: rgb(98, 112, 235);
131142
background-color: transparent;
132143
text-decoration: none;
133144
}
134145

146+
135147
a:hover {
136148
color: red;
137149
background-color: transparent;

0 commit comments

Comments
 (0)