1
0
Fork 0
mirror of https://gitlab.com/Alamantus/Readlebee.git synced 2025-04-23 03:42:57 +02:00

Change header and footer to make more sense

This commit is contained in:
Robbie Antenesse 2019-09-06 23:16:03 -06:00
parent f05ff1e0ef
commit f29e445998
3 changed files with 16 additions and 4 deletions

View file

@ -18,6 +18,13 @@ nav {
position: relative; position: relative;
} }
footer nav {
.links {
@extend .brand;
font-weight: unset;
}
}
// External links // External links
// a[href^="http://"]:not([href*="localhost"]):not([href*="guts.plus"]):after, // a[href^="http://"]:not([href*="localhost"]):not([href*="guts.plus"]):after,
// a[href^="https://"]:not([href*="localhost"]):not([href*="guts.plus"]):after{ // a[href^="https://"]:not([href*="localhost"]):not([href*="guts.plus"]):after{

View file

@ -1,3 +1,8 @@
<footer> <footer>
<p>test footer</p> <nav>
<div class="links">
<a href="https://gitlab.com/Alamantus/book-tracker" class="pseudo button">Repo</a>
<a href="https://gitter.im/book-tracker/general" class="pseudo button">Chat</a>
</div>
</nav>
</footer> </footer>

View file

@ -2,7 +2,7 @@
<nav> <nav>
<div class="brand"> <div class="brand">
<a href="./"> <a href="./">
<h1>Unnamed Book Tracker</h1> <span class="title">Unnamed Book Tracker</span>
</a> </a>
</div> </div>
@ -16,8 +16,8 @@
<input type="text" id="headerSearchBar" name="for" placeholder="Search" value="{{searchTerm}}"> <input type="text" id="headerSearchBar" name="for" placeholder="Search" value="{{searchTerm}}">
</label> </label>
</form> </form>
<a href="https://gitlab.com/Alamantus/book-tracker" class="pseudo button">Repo</a> <a href="/login" class="pseudo button">Log In</a>
<a href="https://gitter.im/book-tracker/general" class="pseudo button">Chat</a> <a href="/logout" class="pseudo button">Log Out</a>
</div> </div>
</nav> </nav>
</header> </header>