title object SCSS is now dependendant, added per screen sizing options
This commit is contained in:
42
public/styles/objects/_title.scss
Normal file
42
public/styles/objects/_title.scss
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
* Title
|
||||||
|
* Title Headings
|
||||||
|
*
|
||||||
|
* Dependencies:
|
||||||
|
* styles/settings/responsive.scss
|
||||||
|
* styles/tools/_responsive.scss
|
||||||
|
*
|
||||||
|
* Version:
|
||||||
|
* 1.0.1 - 2018/06/05
|
||||||
|
*/
|
||||||
|
|
||||||
|
//Font Sizes will scale according to
|
||||||
|
.o-title {
|
||||||
|
font-size: 1.75em;
|
||||||
|
margin: 0.25em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.o-subtitle {
|
||||||
|
font-size: 1em;
|
||||||
|
margin: 0 0 0.5em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include t-media-query($s-small-up) {
|
||||||
|
.o-title {
|
||||||
|
font-size: 2.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.o-subtitle {
|
||||||
|
font-size: 1.25em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include t-media-query($s-medium-up) {
|
||||||
|
.o-title {
|
||||||
|
font-size: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.o-subtitle {
|
||||||
|
font-size: 1.75em;
|
||||||
|
}
|
||||||
|
}
|
@ -1,19 +0,0 @@
|
|||||||
/*
|
|
||||||
* Title
|
|
||||||
* Title Headings
|
|
||||||
*
|
|
||||||
* Version:
|
|
||||||
* 1.0.0 - 2018/05/11
|
|
||||||
*/
|
|
||||||
$o-title--size: 3em;
|
|
||||||
$o-subtitle--size: 1.25em;
|
|
||||||
|
|
||||||
.o-title {
|
|
||||||
font-size: $o-title--size;
|
|
||||||
margin: 0.25em 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.o-subtitle {
|
|
||||||
font-size: $o-subtitle--size;
|
|
||||||
margin: 0 0 0.5em 0;
|
|
||||||
}
|
|
Reference in New Issue
Block a user