diff --git a/src/Client/src/app/app.css b/src/Client/src/app/app.css index 9813ec3..4d772e9 100644 --- a/src/Client/src/app/app.css +++ b/src/Client/src/app/app.css @@ -27,7 +27,7 @@ height: 15px; width: 150px; border-radius: 5px; - margin: 20px; + margin: 10px; text-align: center; padding: 15px 0; transition: 0.5s; @@ -38,22 +38,46 @@ } .nav-button:hover { - background-color: var(--Mistox-Black); + background-color: #00000044; + color: var(--Mistox-Bright); } +.nav-button-login { + width: 100px; + padding: 10px 0; +} + .content { width: 100%; - min-height: calc(100vh - 400px); + min-height: calc(100vh - 300px); } .bottom-bar { display: flex; width: 100%; - height: 200px; + height: 100px; background: linear-gradient(180deg,#99999988, #000000FF); backdrop-filter: blur(2px); } +.bottom-bar-logo { + width: 80px; + height: 80px; + margin: 10px 50px; +} + +.bottom-bar-logo img { + width: 80px; + height: 80px; +} + +.bottom-bar-buttons { + display: flex; + width: calc(50% - 110px); + height: 80px; + margin: 10px; +} + .nav-button-bottom { height: 15px; width: 150px; @@ -65,17 +89,6 @@ text-decoration: none; } - .nav-button:hover { - color: var(--Mistox-Bright); - } - -.bottom-bar-logo { - width: 80px; - height: 80px; - padding: 0 50px; - padding-top: 100px; -} - .bottom-bar-float { align-items: end; color: var(--Mistox-White); diff --git a/src/Client/src/app/app.html b/src/Client/src/app/app.html index 818b487..28ab685 100644 --- a/src/Client/src/app/app.html +++ b/src/Client/src/app/app.html @@ -5,29 +5,29 @@ JOB BOARD
- {{ auth.loggedInUser.userName.toUpperCase() }} - LOGOUT + {{ auth.loggedInUser.userName.toUpperCase() }} + LOGOUT
- LOGIN - REGISTER + LOGIN + REGISTER
-
+ - -
+
Mistox LLC
diff --git a/src/Client/src/styles.css b/src/Client/src/styles.css index d7f89d6..b37f794 100644 --- a/src/Client/src/styles.css +++ b/src/Client/src/styles.css @@ -13,7 +13,11 @@ font-family: Arial, Helvetica, sans-serif; } +html { + background-color: #000; +} + body { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23999999' fill-opacity='1' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23999999' fill-opacity='0.2' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); background-color: #fff; } \ No newline at end of file diff --git a/src/Server/wwwroot/img/site-logo.jpg b/src/Server/wwwroot/img/site-logo.jpg new file mode 100644 index 0000000..9de077d Binary files /dev/null and b/src/Server/wwwroot/img/site-logo.jpg differ diff --git a/src/Server/wwwroot/img/site-logo2.jpg b/src/Server/wwwroot/img/site-logo2.jpg new file mode 100644 index 0000000..8e6b946 Binary files /dev/null and b/src/Server/wwwroot/img/site-logo2.jpg differ