This repository has been archived by the owner on Jun 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zach Schnackel
committed
Aug 25, 2015
1 parent
85aa582
commit 2de6089
Showing
42 changed files
with
393 additions
and
344 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,6 @@ | |
// | ||
// Project | ||
// | ||
@import "svg.less"; | ||
@import "wordpress.less"; | ||
@import "global.less"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +0,0 @@ | ||
// | ||
// Icons | ||
// | ||
.bt-icon { | ||
width: 0.85em; | ||
height: 0.85em; | ||
position: relative; | ||
fill: currentColor; | ||
display: inline-block; | ||
|
||
a > & { | ||
pointer-events: none; | ||
} | ||
} | ||
.bt-icon--smaller { | ||
width: 0.65em; | ||
height: 0.65em; | ||
} | ||
.bt-icon--larger { | ||
width: 1.25em; | ||
height: 1.25em; | ||
transform: translateY(.2em); | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// | ||
// Icons | ||
// | ||
.bt-icon { | ||
width: 0.85em; | ||
height: 0.85em; | ||
position: relative; | ||
fill: currentColor; | ||
display: inline-block; | ||
|
||
a > & { | ||
pointer-events: none; | ||
} | ||
} | ||
.bt-icon--smaller { | ||
width: 0.65em; | ||
height: 0.65em; | ||
} | ||
.bt-icon--standalone { | ||
width: 1em; | ||
height: 1em; | ||
} | ||
.bt-icon--larger { | ||
width: 1.25em; | ||
height: 1.25em; | ||
transform: translateY(.2em); | ||
} | ||
|
||
.bt-icon-fill(@src, @fill-default, @fill-new) { | ||
@escape-fill-default: escape(@fill-default); | ||
@escape-fill-new: escape(@fill-new); | ||
@data-uri: data-uri('image/svg+xml;charset=UTF-8', "@{src}"); | ||
@replace-src: replace("@{data-uri}", "@{escape-fill-default}", "@{escape-fill-new}"); | ||
background-image: e(@replace-src); | ||
} | ||
|
||
.bt-icon-no-fill(@src, @fill-new) { | ||
@data-uri: data-uri('image/svg+xml;charset=UTF-8', "@{src}"); | ||
@replace-default: escape('<path '); | ||
@replace-new: escape('<path fill="@{fill-new}" '); | ||
@replace-src: replace("@{data-uri}", @replace-default, @replace-new, "g"); | ||
background-image: e(@replace-src); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
.hook-base-body() { | ||
box-sizing: border-box; | ||
box-sizing: border-box; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
text-rendering: optimizeLegibility; | ||
|
||
*, *:before, *:after { | ||
box-sizing: inherit; | ||
} | ||
*, *:before, *:after { | ||
box-sizing: inherit; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
.uk-navbar-nav > li > a[href='#'] { | ||
cursor: pointer; | ||
cursor: pointer; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
.hook-container() { | ||
margin: 0 auto; | ||
margin: 0 auto; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
(function( $ ) { | ||
"use strict"; | ||
|
||
// Load SVGs | ||
boomsvgloader.load(svgSpritePath); | ||
|
||
// Placeholder | ||
$('[placeholder]').placeholder(); | ||
|
||
}(jQuery)); |
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "basey-theme", | ||
"version": "7.0.0", | ||
"version": "8.0.0", | ||
"private": "true", | ||
"dependencies": { | ||
"uikit": "uikit/uikit#2.20.3", | ||
"uikit": "uikit/uikit#2.22.0", | ||
"jquery-placeholder": "2.*", | ||
"parsleyjs": "2.*", | ||
"svg4everybody": "*" | ||
"boomsvgloader": "0.0.2", | ||
"parsleyjs": "2.*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module.exports = function(gulp, $, browserSync, reload, merge, paths, files) { | ||
return function() { | ||
browserSync({ | ||
proxy: "wordpress.dev" | ||
}); | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module.exports = function(gulp, $, browserSync, reload, merge, paths, files) { | ||
return function() { | ||
gulp.src('bower_components/uikit/src/fonts/*') | ||
.pipe($.changed(paths.fonts)) | ||
.pipe(gulp.dest(paths.fonts)); | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"deps": [ | ||
"bower_components/boomsvgloader/dist/js/boomsvgloader.js", | ||
"bower_components/jquery-placeholder/jquery.placeholder.js", | ||
"bower_components/parsleyjs/dist/parsley.js", | ||
|
||
"bower_components/uikit/src/js/core/core.js", | ||
"bower_components/uikit/src/js/core/component.js", | ||
"bower_components/uikit/src/js/core/utility.js", | ||
"bower_components/uikit/src/js/core/touch.js", | ||
"bower_components/uikit/src/js/core/alert.js", | ||
"bower_components/uikit/src/js/core/button.js", | ||
"bower_components/uikit/src/js/core/dropdown.js", | ||
"bower_components/uikit/src/js/core/grid.js", | ||
"bower_components/uikit/src/js/core/modal.js", | ||
"bower_components/uikit/src/js/core/offcanvas.js", | ||
"bower_components/uikit/src/js/core/nav.js", | ||
"bower_components/uikit/src/js/core/switcher.js", | ||
"bower_components/uikit/src/js/core/tab.js", | ||
"bower_components/uikit/src/js/core/scrollspy.js", | ||
"bower_components/uikit/src/js/core/smooth-scroll.js", | ||
"bower_components/uikit/src/js/core/toggle.js", | ||
|
||
"bower_components/uikit/src/js/components/accordion.js", | ||
"bower_components/uikit/src/js/components/autocomplete.js", | ||
"bower_components/uikit/src/js/components/datepicker.js", | ||
"bower_components/uikit/src/js/components/form-password.js", | ||
"bower_components/uikit/src/js/components/form-select.js", | ||
"bower_components/uikit/src/js/components/grid.js", | ||
"bower_components/uikit/src/js/components/htmleditor.js", | ||
"bower_components/uikit/src/js/components/lightbox.js", | ||
"bower_components/uikit/src/js/components/nestable.js", | ||
"bower_components/uikit/src/js/components/notify.js", | ||
"bower_components/uikit/src/js/components/pagination.js", | ||
"bower_components/uikit/src/js/components/parallax.js", | ||
"bower_components/uikit/src/js/components/search.js", | ||
"bower_components/uikit/src/js/components/slider.js", | ||
"bower_components/uikit/src/js/components/slideset.js", | ||
"bower_components/uikit/src/js/components/slideshow.js", | ||
"bower_components/uikit/src/js/components/slideshow-fx.js", | ||
"bower_components/uikit/src/js/components/sortable.js", | ||
"bower_components/uikit/src/js/components/sticky.js", | ||
"bower_components/uikit/src/js/components/timepicker.js", | ||
"bower_components/uikit/src/js/components/tooltip.js", | ||
"bower_components/uikit/src/js/components/upload.js" | ||
], | ||
"app": [ | ||
"assets/js/src/init.js" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module.exports = function(gulp, $, browserSync, reload, merge, paths, files) { | ||
return function() { | ||
gulp.src(paths.media.src) | ||
.pipe($.changed(paths.media.build)) | ||
.pipe($.imagemin()) | ||
.pipe($.size({ | ||
showFiles: true, | ||
title: 'Media:' | ||
})) | ||
.pipe(gulp.dest(paths.media.build)) | ||
.pipe($.duration('compressing media')); | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"fonts": "assets/fonts/", | ||
"scripts": { | ||
"src": "assets/js/src/**/*.js", | ||
"build": "assets/js/build/" | ||
}, | ||
"styles": { | ||
"src": "assets/css/src/**/*.less", | ||
"build": "assets/css/build/" | ||
}, | ||
"media": { | ||
"src": "assets/media/src/**/*", | ||
"build": "assets/media/build/" | ||
}, | ||
"svg": { | ||
"src": "assets/svg/src/*.svg", | ||
"build": "assets/svg/build/" | ||
} | ||
} |
Oops, something went wrong.