fix 404 syntax and css

This commit is contained in:
Kenneth Jao 2017-09-02 03:43:32 -04:00
parent 5229e4401f
commit cb1601f677
2 changed files with 13 additions and 5 deletions

View File

@ -45,12 +45,19 @@
margin: auto; margin: auto;
padding: 1vh 2vh 1vh 2vh; padding: 1vh 2vh 1vh 2vh;
text-align: center; text-align: center;
width: 15vh; width: 12vh;
transition: 0.5s;
} }
#third:hover { #third:hover {
background-color: rgba(0, 0, 0, 0.15); background-color: rgba(0, 0, 0, 0.3);
transition: 0.5s; }
#third h4 {
font-weight: 100;
margin-right: 0.5vh;
display: inline;
} }
#foot { #foot {

View File

@ -2,11 +2,12 @@
<div id="fourohfour"> <div id="fourohfour">
<h4 id="first">404</h4> <h4 id="first">404</h4>
<h4 id="second">Nothin' to see here!</h4> <h4 id="second">Nothin' to see here!</h4>
<div> <div id="third">
<h4 id="third" onclick="window.location.href = 'http://hourglass.ga';">Home</h4> <h4 onclick="window.location.href = 'http://hourglass.ga';">Home</h4>
<i class="fa fa-home" aria-hidden="true"></i> <i class="fa fa-home" aria-hidden="true"></i>
</div> </div>
</div> </div>
<div>
<h4 id="foot">Hackers: If you thought by typing in a sub-directory that you'd be able to hack us, you're sorely mistaken! Just stop.</h4> <h4 id="foot">Hackers: If you thought by typing in a sub-directory that you'd be able to hack us, you're sorely mistaken! Just stop.</h4>
</div> </div>
</template> </template>