Added button "support"

This commit is contained in:
2018-05-11 19:46:07 +10:00
parent 69cba6c008
commit 0c9c80f65d
5 changed files with 133 additions and 2 deletions

View File

@ -55,6 +55,7 @@
@import './objects/main.scss';
@import './objects/_app.scss';
@import './objects/_button.scss';
@import './objects/_floating-content-box.scss';
@import './objects/_loader.scss';
@import './objects/_navbar.scss';
@ -65,6 +66,9 @@
@import './components/_section.scss';
@import './components/_video-section.scss';
//Utilities
@import './utilities/text-align.scss';
//Vendor
@import './vendor/_fonts.scss';

View File

@ -0,0 +1,19 @@
/*
* Button
* Clicky Tappy Touchy Buttons!
*
* Dependencies:
*
*
* Version:
* 1.0.0 - 2018/05/11
*/
.o-btn {
//Reset
display: inline-block;
background: none;
border: none;
padding: 0;
margin: 0;
cursor: pointer;
}

View File

@ -0,0 +1,22 @@
/*
* Text Align
* Basic Text Alignment, no importants but has high priority.
*
* Version:
* 1.0.0 - 2018/05/11
*/
.u-text-left {
text-align: left;
}
.u-text-center {
text-align: center;
}
.u-text-right {
text-align: right;
}
.u-text-justify {
text-align: justify;
}