Updated v2 draft
This commit is contained in:
parent
2375fe7637
commit
877beb9b4f
16 changed files with 296 additions and 300 deletions
24
assets/sass/components/_buttons.scss
Normal file
24
assets/sass/components/_buttons.scss
Normal file
|
@ -0,0 +1,24 @@
|
|||
.btn {
|
||||
background-color: $base-colour;
|
||||
color: $base-background-colour;
|
||||
display: inline-block;
|
||||
height: ($base-spacing-unit * 1.5);
|
||||
line-height: ($base-spacing-unit * 1.5);
|
||||
padding: 0 $base-spacing-unit;
|
||||
text-align: center;
|
||||
width: auto;
|
||||
&::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.btn--block {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.btn--link {
|
||||
background-color: transparent;
|
||||
color: $base-colour;
|
||||
}
|
14
assets/sass/components/_nav.scss
Executable file
14
assets/sass/components/_nav.scss
Executable file
|
@ -0,0 +1,14 @@
|
|||
.nav {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
> li {
|
||||
display: inline-block;
|
||||
margin-right: $base-spacing-unit;
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
> a {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue