mirror of
https://github.com/adanrsantos/ThePlaceHolders.git
synced 2024-12-16 08:00:39 -06:00
fixed navbar and toolbar (again)
This commit is contained in:
parent
b85edc2ca1
commit
51d48b69c3
|
@ -21,16 +21,18 @@ html, body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbarCont {
|
.navbarCont {
|
||||||
position: relative;
|
|
||||||
background-color: var(--utsa-blue);
|
background-color: var(--utsa-blue);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom: 10vh;
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbarCont a {
|
.navbarCont a {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
float: left;
|
float: left;
|
||||||
text-align: center;
|
justify-content: space-around;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: var(--utsa-orange);
|
color: var(--utsa-orange);
|
||||||
|
@ -77,7 +79,8 @@ html, body {
|
||||||
background-color: var(--utsa-blue);
|
background-color: var(--utsa-blue);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
margin-top: 11vh;
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.toolbarItems {
|
.toolbarItems {
|
||||||
|
@ -122,11 +125,9 @@ canvas {
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbarCont {
|
.navbarCont {
|
||||||
position: relative;
|
|
||||||
background-color: var(--utsa-blue);
|
background-color: var(--utsa-blue);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom: 11vh;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbarCont a {
|
.navbarCont a {
|
||||||
|
@ -141,4 +142,8 @@ canvas {
|
||||||
height: 500px;
|
height: 500px;
|
||||||
width: 500px;
|
width: 500px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.toolbar {
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -24,14 +24,14 @@
|
||||||
<canvas id="canvas" width="500" height="500" style="border:1px solid #000000;" alt="canvas"></canvas>
|
<canvas id="canvas" width="500" height="500" style="border:1px solid #000000;" alt="canvas"></canvas>
|
||||||
<div id="toolbar" class="d-flex align-items-center toolbar">
|
<div id="toolbar" class="d-flex align-items-center toolbar">
|
||||||
<div class="toolbarItems">
|
<div class="toolbarItems">
|
||||||
<button id="zoomOut">-</button>
|
<!--extra space for toolbar-->
|
||||||
</div>
|
</div>
|
||||||
<div class="toolbarItems">
|
<div class="toolbarItems">
|
||||||
<label for="stroke">Strokes</label>
|
<label for="stroke">Strokes</label>
|
||||||
<input id="stroke" name="stroke" type="color" class="strokePicker">
|
<input id="stroke" name="stroke" type="color" class="strokePicker">
|
||||||
</div>
|
</div>
|
||||||
<div class="toolbarItems">
|
<div class="toolbarItems">
|
||||||
<button onclick="zoomIn"id="zoomIn">+</button>
|
<!--extra space for toolbar-->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!--</div>-->
|
<!--</div>-->
|
||||||
|
|
Loading…
Reference in a new issue