update again

This commit is contained in:
Wyatt Miller 2018-05-21 01:22:22 -04:00
parent 2d33a99e7d
commit 168f2f2a54
5 changed files with 8 additions and 7 deletions

View File

@ -5,9 +5,9 @@
# Copying files in the dockerfile is kind of a mess. Actually not really.
# Just remember when linking files, follow the method below.
FROM php:7.0-apache
RUN /bin/bash -c "cd /var/www/html && mkdir assets && mkdir css && mkdir img && mkdir webfonts"
COPY src/ /var/www/html
COPY img/ /var/www/html/img
COPY css/ /var/www/html/css
COPY webfonts/ /var/www/html/webfonts
COPY assets/ /var/www/html/assets
EXPOSE 80

BIN
src/assets/resume.pdf Normal file

Binary file not shown.

View File

@ -16,7 +16,7 @@
</div>
<nav class="nav nav-pills nav-justified">
<a class="nav-item nav-link" href="/">Home</a>
<a class="nav-item nav-link" href="about.php">About</a>
<a class="nav-item nav-link" href="assets/resume.pdf">About</a>
<a class="nav-item nav-link" href="https://github.com/wymillerlinux?tab=repositories">Projects</a>
<a class="nav-item nav-link" href="mailto:wjmiller2016@gmail.com">Contact</a>
</nav>

View File

@ -31,9 +31,10 @@ a:hover {color: seashell !important;}
.about-background p {position: relative; font-size: 20px; color: white;}
.nav-pills .nav-link {font-size: 24px; background-color: #f08080 !important; border-radius: 0 !important; border-style: solid; border-width: 2px; border-color: black;}
.nav-link a {color: white; text-decoration-color: white;}
.nav-pills .nav-link a:hover {text-decoration-color: white;}
a.nav-item.nav-link {font-family: "Ubuntu", cursive; font-size: 30px;}
.nav-link a {font-family: "Oswald", cursive; font-size: 30px; color: white; text-decoration-color: white;}
.nav-link a:hover {background-color: #efa0a0 !important; text-decoration-color: white;}
a:hover.nav-item.nav-link {background-color: #efa0a0 !important; text-decoration-color: white;}
a.nav-item.nav-link {font-family: "Oswald", cursive; font-size: 30px;}
/*Media queries*/
@media (min-width: 768px){

View File

@ -8,8 +8,8 @@ Licensed by the MIT
new Twitch.Embed("twitch-embed", {
theme: "dark",
chat: "mobile",
width: "80%",
height: "50%",
width: "100%",
height: "100%",
channel: "wymillerlinux"
});