This commit is contained in:
2016-06-14 21:54:24 -04:00
parent c8df251d02
commit 3de79fda50
10115 changed files with 32393 additions and 1035866 deletions

21
_sass/utility/_setting.scss Executable file
View File

@@ -0,0 +1,21 @@
/**
* ----------------------------------------------------------------------------------------
* Site settings
* ----------------------------------------------------------------------------------------
*/
/* Typography */
$font-size: 16px;
$font: 'Open Sans', Helvetica, Arial, sans-serif;
$baseline: $base-font-size * 1.5;
/* Color */
$navbg: #eee;
$articlebg: $navbg + 8;
$headerbg: #1C3340;
$searchbd: rgb(51, 122, 183);
/* Positioning */
$margin-multiplier: 2;
$general-margin: $margin-multiplier * $baseline;

33
_sass/utility/_utility.scss Executable file
View File

@@ -0,0 +1,33 @@
/**
* ----------------------------------------------------------------------------------------
* Utility
* ----------------------------------------------------------------------------------------
*/
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.align-left {
@include float-left;
}
.align-right {
@include float-right;
}
.clearfix {
@include clearfix;
}
.col-equal {
margin-bottom: -99999px;
padding-bottom: 99999px;
}