Initial theming
This commit is contained in:
parent
53d6173a5f
commit
002f40bc1a
25 changed files with 634 additions and 0 deletions
4
web/themes/dcb2017/sass/layout/_content.scss
Normal file
4
web/themes/dcb2017/sass/layout/_content.scss
Normal file
|
@ -0,0 +1,4 @@
|
|||
.region-content {
|
||||
margin: 0 auto;
|
||||
max-width: 72rem;
|
||||
}
|
24
web/themes/dcb2017/sass/layout/_featured.scss
Normal file
24
web/themes/dcb2017/sass/layout/_featured.scss
Normal file
|
@ -0,0 +1,24 @@
|
|||
.region-featured {
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
background-image: url('../images/dcb-bg.jpg');
|
||||
background-size: cover;
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
|
||||
.featured-footer {
|
||||
background: black;
|
||||
color: white;
|
||||
font-size: 1.2rem;
|
||||
font-weight: bold;
|
||||
padding: 1rem;
|
||||
text-align: center;
|
||||
}
|
4
web/themes/dcb2017/sass/layout/_footer.scss
Normal file
4
web/themes/dcb2017/sass/layout/_footer.scss
Normal file
|
@ -0,0 +1,4 @@
|
|||
.region-footer {
|
||||
margin: 0 auto;
|
||||
max-width: 72rem;
|
||||
}
|
5
web/themes/dcb2017/sass/layout/_header.scss
Normal file
5
web/themes/dcb2017/sass/layout/_header.scss
Normal file
|
@ -0,0 +1,5 @@
|
|||
.region-header {
|
||||
margin: 0 auto;
|
||||
max-width: 72rem;
|
||||
overflow: hidden;
|
||||
}
|
Reference in a new issue