Tweaked some scaling, should look nicer.

This commit is contained in:
Gabriel Simmer 2018-03-03 13:36:26 -08:00
parent 9a0d2bd638
commit 73299b0669
5 changed files with 118 additions and 23 deletions

View file

@ -2,11 +2,25 @@ body, html {
font-family: 'Open Sans', sans-serif; font-family: 'Open Sans', sans-serif;
background-color: #2D2D2D; background-color: #2D2D2D;
color: #F6F6F6; color: #F6F6F6;
overflow: hidden;
font-weight: bolder; font-weight: bolder;
margin: 0 auto; padding: 0; margin: 0 auto; padding: 0;
} }
.name {
opacity: 0;
position: absolute;
left:7vw;
top: 5vh;
font-size: 3vh;
padding: 10px;
background-color: lightgrey;
color:black;
border-radius: 20px;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
.profile-img { .profile-img {
margin: 10px; margin: 10px;
max-width: 5vw; max-width: 5vw;
@ -17,6 +31,13 @@ body, html {
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
} }
.profile-img:hover + .name {
opacity: 1;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
.status { .status {
position: absolute; position: absolute;
right:5vw; right:5vw;
@ -40,21 +61,34 @@ hr {
.project { .project {
margin: 10px; margin: 10px;
background-color: white; /*background-color: white;*/
width: 40vh; height: 37vh;
height: 40vh; text-align: center;
}
.project-img {
max-width: 30vh;
-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
} }
.project-img { .projectname {
max-width: 40vh; color: #34ABE5;
opacity: 0;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
.project:hover .projectname {
opacity: 1;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
} }
.buttons { .buttons {
display: flex; display: flex;
justify-content: center; justify-content: center;
font-size: 5vw;
margin-top: 10vh; margin-top: 10vh;
margin-bottom: 5vh; margin-bottom: 5vh;
text-align: center; text-align: center;
@ -62,9 +96,10 @@ hr {
.button { .button {
margin: 0 0.5vw; margin: 0 0.5vw;
background-color: #505050; background-color: #505050;
width: 125px; width: 75px;
height: auto; height: 75px;
border: 1px solid #4F4F51; border: 1px solid #4F4F51;
font-size: 8vh;
border-radius: 50%; border-radius: 50%;
-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

After

Width:  |  Height:  |  Size: 116 KiB

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 123 KiB

View file

@ -13,6 +13,7 @@
<div class="container"> <div class="container">
<header> <header>
<img src="https://avatars2.githubusercontent.com/u/1878840?s=400&u=b433687936e1e1c1bfd858737d8323c6a5b58c33&v=4" alt="Github Profile Picture" class="profile-img"> <img src="https://avatars2.githubusercontent.com/u/1878840?s=400&u=b433687936e1e1c1bfd858737d8323c6a5b58c33&v=4" alt="Github Profile Picture" class="profile-img">
<span class="name">Gabriel Simmer</span>
<div class="status"> <div class="status">
<span id="time">10:32 <small>AM</small></span> <span id="time">10:32 <small>AM</small></span>
<span id="wifi"><i class="fas fa-wifi" id="wifi"></i></span> <span id="wifi"><i class="fas fa-wifi" id="wifi"></i></span>
@ -23,19 +24,24 @@
<main> <main>
<div class="games"> <div class="games">
<div class="project" id="pogo"> <div class="project" id="pogo">
<h2 class="projectname">POGO</h2>
<a href="https://github.com/gmemstr/pogo"><img src="assets/pogo.png" alt="Pogo Logo" class="project-img"></a> <a href="https://github.com/gmemstr/pogo"><img src="assets/pogo.png" alt="Pogo Logo" class="project-img"></a>
</div> </div>
<div class="project" id="platypus"> <div class="project" id="platypus">
<h2 class="projectname">PLATYPUS</h2>
<a href="https://github.com/gmemstr/platypus"><img src="assets/platypus.png" alt="Platypus Logo" class="project-img"></a> <a href="https://github.com/gmemstr/platypus"><img src="assets/platypus.png" alt="Platypus Logo" class="project-img"></a>
</div> </div>
<div class="project" id="gitgalaxy"> <div class="project" id="gitgalaxy">
<h2 class="projectname">GIT GALAXY</h2>
<img src="assets/gitgalaxy.png" alt="Git Galaxy Logo" class="project-img"> <img src="assets/gitgalaxy.png" alt="Git Galaxy Logo" class="project-img">
</div> </div>
<div class="project" id="nodemc"> <div class="project" id="nodemc">
<h2 class="projectname">NODEMC</h2>
<img src="assets/nodemc.png" alt="NodeMC Logo" class="project-img"> <img src="assets/nodemc.png" alt="NodeMC Logo" class="project-img">
</div> </div>
<div class="project" id="placeholder"> <div class="project" id="other">
<img src="https://placehold.it/400x400" alt="Placeholder Logo" class="project-img"> <h2 class="projectname">MORE</h2>
<img src="assets/other.png" alt="Other Stuff" class="project-img">
</div> </div>
</div> </div>
@ -58,6 +64,7 @@
</div> </div>
</main> </main>
<hr /> <hr />
<center><p>Hand built with <i class="fas fa-heart"></i> by Gabriel Simmer</p></center>
</div> </div>
<script> <script>
var date = new Date(); var date = new Date();