diff --git a/static/canvas.css b/static/canvas.css index 06e3162..a2dd7a1 100644 --- a/static/canvas.css +++ b/static/canvas.css @@ -21,12 +21,45 @@ html, body { } .navbarCont { + position: relative; background-color: var(--utsa-blue); width: 100%; text-align: center; margin-bottom: 10px; } +.navbarCont a { + float: left; + text-align: center; + padding: 12px; + text-decoration: none; + color: #e67e22; +} + +.navbarCont a.icon { + padding: 0px; +} + +.navbarCont a.title { + font-size: 26.5px; +} + +.navbarCont a.rightB { + float: right; + display: inline-block; + padding: 20px; + margin: 0; + color: #ecf0f1; +} + +.navbarCont a.rightB:hover { + background-color: #34495e +} + +.navbarCont img { + float: left; +} + .canvasCont { display: flex; flex-direction: column; @@ -74,3 +107,10 @@ canvas { margin: 20px; image-rendering: pixelated; } + +@media screen and (max-width: 600px) { + .navbarCont a { + /* possible hamburger menu for moblie users*/ + position: absolute + } + } diff --git a/static/canvas.html b/static/canvas.html index 03aeb71..4d3135f 100644 --- a/static/canvas.html +++ b/static/canvas.html @@ -13,7 +13,11 @@