app/assets/sass/layout/_masthead.scss: Adding logo to masthead.
This commit is contained in:
parent
32e5161c66
commit
7cbed511be
1 changed files with 9 additions and 1 deletions
|
|
@ -1,11 +1,19 @@
|
||||||
|
|
||||||
.masthead {
|
.masthead {
|
||||||
@extend .container;
|
@extend .container;
|
||||||
display: block;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
align-items: center;
|
||||||
padding-top: 2em;
|
padding-top: 2em;
|
||||||
padding-bottom: 4em;
|
padding-bottom: 4em;
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
background: url(#{$image-path}/logo.png) no-repeat;
|
||||||
|
height: 220px;
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
h1, p {
|
h1, p {
|
||||||
color: $text-light-color;
|
color: $text-light-color;
|
||||||
text-shadow: $header-text-shadow;
|
text-shadow: $header-text-shadow;
|
||||||
|
|
|
||||||
Reference in a new issue