Add topbar, move account info to top-right corner

This commit is contained in:
2018-06-16 15:36:21 +02:00
parent 575c1a11c2
commit 24e3171311
7 changed files with 43 additions and 15 deletions
+5
View File
@@ -6,3 +6,8 @@ $yellow: #fbe468;
$red: #fb6868;
$primaryColor: $blue;
#topbar {
background-color: rgba(255,0,255,.2);
}
+4 -1
View File
@@ -1,4 +1,7 @@
section {
#topbar {
}
main section {
@include outer-container;
margin-bottom: 8rem;
&:first-of-type {
+2 -1
View File
@@ -2,6 +2,7 @@
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 14px;
}
*:hover, *:active, *:focus {
@@ -24,7 +25,6 @@ body {
background-repeat: none;
background-attachment: fixed;
font-family: $font-family-sans;
font-size: 14px;
font-weight: 300;
color: #fff;
}
@@ -100,6 +100,7 @@ button, input[type=submit] {
}
}
@import "components/topbar";
@import "components/loading-spinner";
@import "components/contributor-list";
@import "components/add-contributor";
+15
View File
@@ -0,0 +1,15 @@
#topbar {
padding: 0 1rem;
line-height: 3rem;
background-color: rgba(0,0,0,.3);
h1 {
display: inline-block;
text-transform: uppercase;
}
section#user-account {
display: inline-block;
float: right;
}
}