populate navbar
This commit is contained in:
parent
d91d98cef5
commit
fd0d0f0453
1 changed files with 36 additions and 3 deletions
|
@ -3,7 +3,15 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="outer-container">
|
<div class="outer-container">
|
||||||
<div class="top-bar" />
|
<div class="navbar">
|
||||||
|
<div class="navbar-main">
|
||||||
|
<a href="/">PlanetWars</a>
|
||||||
|
</div>
|
||||||
|
<div class="navbar-user">
|
||||||
|
<a class="navbar-href" href="login">Sign in</a>
|
||||||
|
<a class="navbar-href" href="register">Sign up</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<slot />
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -17,10 +25,35 @@
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-bar {
|
.navbar {
|
||||||
height: 40px;
|
height: 48px;
|
||||||
background-color: $bg-color;
|
background-color: $bg-color;
|
||||||
border-bottom: 1px solid;
|
border-bottom: 1px solid;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 0 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-user a {
|
||||||
|
font-size: 18px;
|
||||||
|
color: #eee;
|
||||||
|
font-family: Helvetica, sans-serif;
|
||||||
|
padding: 4px 8px;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-main {
|
||||||
|
margin: auto 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-main a {
|
||||||
|
font-size: 20px;
|
||||||
|
color: #eee;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-user {
|
||||||
|
margin: auto 0;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue