29 lines
436 B
SCSS
29 lines
436 B
SCSS
#topbar {
|
|
padding: 0 1rem;
|
|
height: 3rem;
|
|
line-height: 3rem;
|
|
background-color: rgba(0,0,0,.3);
|
|
|
|
@include media-min(medium) {
|
|
padding: 0 2rem;
|
|
height: 4rem;
|
|
line-height: 4rem;
|
|
}
|
|
|
|
h1 {
|
|
display: inline-block;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
section#user-account {
|
|
display: inline-block;
|
|
float: right;
|
|
}
|
|
}
|