Merge pull request #2 from benchmarkstudios/master
Merge current barebones
This commit is contained in:
commit
38e1e4bf1d
|
@ -1,6 +1,6 @@
|
|||
# barebones
|
||||
|
||||
A lightweight and skeletal WordPress boilerplate theme for HTML5 and beyond. There's lots of these out there but most themes include lots of bloat and files which you might not necessarily need, so we thought we would create my own which is great as a starting point with powerful features to encourage rapid development for most projects.
|
||||
A lightweight and skeletal WordPress boilerplate theme for HTML5 and beyond. There's lots of these out there but most themes include lots of bloat and files which you might not necessarily need, so we thought we would create our own which is great as a starting point with powerful features to encourage rapid development for most projects.
|
||||
|
||||
## Features
|
||||
|
||||
|
|
|
@ -29,14 +29,14 @@ $base-spacing-unit: ($base-font-size * $base-line-height) * 1px;
|
|||
* Breakpoints
|
||||
*/
|
||||
|
||||
$breakpoint-sm: 767px;
|
||||
$breakpoint-md: 992px;
|
||||
$breakpoint-lg: 1200px;
|
||||
$breakpoint-md: 768px;
|
||||
$breakpoint-sm: 480px;
|
||||
|
||||
$breakpoints: (
|
||||
'lg' '(min-width: ' + $breakpoint-lg + ')',
|
||||
'md' '(min-width: ' + $breakpoint-md + ') and (max-width: ' + ($breakpoint-lg - 1) + ')',
|
||||
'sm' '(min-width: ' + ($breakpoint-sm + 1) + ') and (max-width:' + ($breakpoint-md - 1) + ')',
|
||||
'sm' '(max-width:' + ($breakpoint-md - 1) + ')',
|
||||
'xs' '(max-width: ' + $breakpoint-sm + ')'
|
||||
);
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit e87c4f6ee56bb7223a1cb56698cec4d0fdabbd29
|
||||
Subproject commit 4aee2627e323b19a70045a84adafc9f4fee44a6f
|
Loading…
Reference in New Issue