mirror of
https://github.com/adanrsantos/ThePlaceHolders.git
synced 2024-12-16 08:00:39 -06:00
fixed empty space at bottom of toolbar
This commit is contained in:
parent
b9153998f1
commit
b85edc2ca1
|
@ -16,8 +16,8 @@ html, body {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
|
||||||
background-color: var(--utsa-orange);
|
background-color: var(--utsa-orange);
|
||||||
|
height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbarCont {
|
.navbarCont {
|
||||||
|
@ -25,7 +25,7 @@ html, body {
|
||||||
background-color: var(--utsa-blue);
|
background-color: var(--utsa-blue);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbarCont a {
|
.navbarCont a {
|
||||||
|
@ -33,7 +33,7 @@ html, body {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #e67e22;
|
color: var(--utsa-orange);
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbarCont a.icon {
|
.navbarCont a.icon {
|
||||||
|
@ -46,7 +46,6 @@ html, body {
|
||||||
|
|
||||||
.navbarCont a.rightB {
|
.navbarCont a.rightB {
|
||||||
float: right;
|
float: right;
|
||||||
display: inline-block;
|
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: #ecf0f1;
|
color: #ecf0f1;
|
||||||
|
@ -78,6 +77,7 @@ html, body {
|
||||||
background-color: var(--utsa-blue);
|
background-color: var(--utsa-blue);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
margin-top: 11vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.toolbarItems {
|
.toolbarItems {
|
||||||
|
@ -105,12 +105,40 @@ html, body {
|
||||||
canvas {
|
canvas {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
|
align-self: center;
|
||||||
|
height: 500px;
|
||||||
|
width: 500px;
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 600px) {
|
@media screen and (max-width: 600px) {
|
||||||
|
.navbarCont a.title {
|
||||||
|
font-size: 18.5px;
|
||||||
|
padding-left: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbarCont img {
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbarCont {
|
||||||
|
position: relative;
|
||||||
|
background-color: var(--utsa-blue);
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 11vh;
|
||||||
|
}
|
||||||
|
|
||||||
.navbarCont a {
|
.navbarCont a {
|
||||||
/* possible hamburger menu for moblie users*/
|
/* possible hamburger menu for moblie users*/
|
||||||
position: absolute
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
canvas {
|
||||||
|
background-color: white;
|
||||||
|
margin: 20px;
|
||||||
|
align-self: center;
|
||||||
|
height: 500px;
|
||||||
|
width: 500px;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -16,8 +16,8 @@
|
||||||
<a class="icon" href="./index.html"><img src="navbarlogo.png"></img></a>
|
<a class="icon" href="./index.html"><img src="navbarlogo.png"></img></a>
|
||||||
<a class="title" href="./index.html">ThePlaceHolders</a>
|
<a class="title" href="./index.html">ThePlaceHolders</a>
|
||||||
<a class="rightB" href="./contact.html">Contact</a>
|
<a class="rightB" href="./contact.html">Contact</a>
|
||||||
<a class="rightB">Login</a>
|
<a class="rightB" href="./login.html">Login</a>
|
||||||
<a class="rightB">Settings</a>
|
<a class="rightB" href="./register.html">Register</a>
|
||||||
</div>
|
</div>
|
||||||
<!--note to self: below IS the canvas-->
|
<!--note to self: below IS the canvas-->
|
||||||
<!--<div class="canvasCont">-->
|
<!--<div class="canvasCont">-->
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
:root {
|
||||||
|
--utsa-orange: #f15a22;
|
||||||
|
--utsa-blue: #0c2340;
|
||||||
|
}
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue