23 lines
347 B
SCSS
23 lines
347 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;
|
|
}
|
|
|
|
section#user-account {
|
|
display: inline-block;
|
|
float: right;
|
|
}
|
|
}
|