diff --git a/Dockerfile b/Dockerfile index 9c65509..c6e3a77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/src/assets/resume.pdf b/src/assets/resume.pdf new file mode 100644 index 0000000..96a0128 Binary files /dev/null and b/src/assets/resume.pdf differ diff --git a/src/header.php b/src/header.php index 872ffba..78840c8 100644 --- a/src/header.php +++ b/src/header.php @@ -16,7 +16,7 @@ diff --git a/src/style.css b/src/style.css index 356c43f..c7c35bb 100644 --- a/src/style.css +++ b/src/style.css @@ -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){ diff --git a/src/twitch-player.js b/src/twitch-player.js index 943893d..0acf125 100644 --- a/src/twitch-player.js +++ b/src/twitch-player.js @@ -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" });