new site
This commit is contained in:
21
_sass/utility/_setting.scss
Executable file
21
_sass/utility/_setting.scss
Executable 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
33
_sass/utility/_utility.scss
Executable 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;
|
||||
}
|
||||
Reference in New Issue
Block a user