Initial theming
This commit is contained in:
parent
53d6173a5f
commit
002f40bc1a
25 changed files with 634 additions and 0 deletions
13
web/themes/dcb2017/sass/base/_mixins.scss
Normal file
13
web/themes/dcb2017/sass/base/_mixins.scss
Normal file
|
@ -0,0 +1,13 @@
|
|||
@mixin button {
|
||||
background: $dcb-blue;
|
||||
border: 0;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
padding: 0.5rem 1rem;
|
||||
text-transform: uppercase;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: $dcb-green;
|
||||
}
|
||||
}
|
5
web/themes/dcb2017/sass/base/_variables.scss
Normal file
5
web/themes/dcb2017/sass/base/_variables.scss
Normal file
|
@ -0,0 +1,5 @@
|
|||
// Custom variables, colours etc.
|
||||
|
||||
$dcb-green: #44efb9;
|
||||
$dcb-blue: #b33ee9;
|
||||
$dcb-purple: #ec16a8;
|
Reference in a new issue