Skip to content

Commit

Permalink
Sedna Template
Browse files Browse the repository at this point in the history
First
  • Loading branch information
peterfinlan committed Aug 20, 2015
0 parents commit 0bcfa3c
Show file tree
Hide file tree
Showing 110 changed files with 12,813 additions and 0 deletions.
51 changes: 51 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# "Sedna" One Page Website Template

"Sedna" is a one page website template made by [Peter Finlan](http://peterfinlan.com/) exclusively for Codrops.

[Download on Codrops](http://tympanus.net/codrops/?p=24660)

[Demo](http://tympanus.net/Freebies/Sedna/)

## License

Use it freely but please do not republish, distribute or sell "as-is". [Read more about our license.](http://tympanus.net/codrops/licensing/)

## Credits

### Bootstrap

[Bootstrap](http://getbootstrap.com/) by Twitter. Licensed under [MIT](https://github.com/twbs/bootstrap/blob/master/LICENSE)

### FancyBox

[FancyBox](http://fancyapps.com/fancybox/) by fancyApps. Licensed under [CC BY-NC 3.0](http://creativecommons.org/licenses/by-nc/3.0/)

### FlexSlider

[FlexSlider](http://www.woothemes.com/flexslider/) by WooThemes. Licensed under [GNU GENERAL PUBLIC LICENSE](https://github.com/woothemes/FlexSlider/blob/master/LICENSE.md)

### Waypoints

[Waypoints](https://github.com/imakewebthings/waypoints) by Caleb Troughton. Licensed under [MIT](https://github.com/imakewebthings/waypoints/blog/master/licenses.txt)

### Animate.css

[Animate.css](https://daneden.github.io/animate.css/) by Dan Eden

### Font Awesome Icons

[Font Awesome](http://fortawesome.github.io/Font-Awesome/) by Dave Gandy. Licensed under [MIT](http://opensource.org/licenses/mit-license.html)

### Elegant Icons

[Elegant Icons](http://www.elegantthemes.com/blog/resources/elegant-icon-font/) by Elegant Themes. Licensed under [MIT](http://opensource.org/licenses/mit-license.html)

## Misc

Follow Pete: [Twitter](https://twitter.com/peterfinlan), [Dribbble](http://www.dribbble.com/peterfinlan)

Follow Codrops: [Twitter](http://www.twitter.com/codrops), [Facebook](http://www.facebook.com/pages/Codrops/159107397912), [Google+](https://plus.google.com/101095823814290637419), [GitHub](https://github.com/codrops), [Pinterest](http://www.pinterest.com/codrops/)

[© Codrops 2015](http://www.codrops.com)


Binary file added apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions bower_components/animate.css/.bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "animate.css",
"version": "3.3.0",
"main": "./animate.css",
"ignore": [
".*",
"src",
"*.yml",
"Gemfile",
"Gemfile.lock",
"*.md"
],
"homepage": "https://github.com/daneden/animate.css",
"_release": "3.3.0",
"_resolution": {
"type": "version",
"tag": "3.3.0",
"commit": "31b8e9026143342d14ba4ff9213181394a8b2e90"
},
"_source": "git://github.com/daneden/animate.css.git",
"_target": "~3.3.0",
"_originalSource": "animate.css",
"_direct": true
}
79 changes: 79 additions & 0 deletions bower_components/animate.css/Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
module.exports = function(grunt) {

require('load-grunt-tasks')(grunt);

var concatAnim;

grunt.initConfig({

pkg: grunt.file.readJSON('package.json'),

concat: {
dist: {
src: [ 'source/_base.css', 'source/**/*.css' ], // _base.css required for .animated helper class
dest: 'animate.css'
}
},

autoprefixer: { // https://github.com/nDmitry/grunt-autoprefixer
options: {
browsers: ['last 2 versions', 'bb 10']
},
no_dest: {
src: 'animate.css' // output file
}
},

cssmin: {
minify: {
src: ['animate.css'],
dest: 'animate.min.css',
}
},

watch: {
css: {
files: [ 'source/**/*', 'animate-config.json' ],
tasks: ['default']
}
}

});

// fuction to perform custom task
concatAnim = function () {

var categories = grunt.file.readJSON('animate-config.json'),
category, files, file,
target = [ 'source/_base.css' ],
count = 0;

for ( category in categories ) {
if ( categories.hasOwnProperty(category) ) {
files = categories[category]
for (file in files) {
if ( files.hasOwnProperty(file) && files[file] ) {
target.push('source/' + category + '/' + file + '.css');
count += 1;
}
}
}
}

if (!count) {
grunt.log.writeln('No animations activated.');
} else {
grunt.log.writeln(count + (count > 1 ? ' animations' : ' animation') + ' activated.');
}

grunt.config('concat', { 'animate.css': target });
grunt.task.run('concat');

};

// register task
grunt.registerTask('concat-anim', 'Concatenates activated animations', concatAnim); // custom task
grunt.registerTask('default', ['concat-anim', 'autoprefixer', 'cssmin']);
grunt.registerTask('dev', ['watch']);

};
119 changes: 119 additions & 0 deletions bower_components/animate.css/animate-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
{

"attention_seekers": {
"bounce": true,
"flash": true,
"pulse": true,
"rubberBand": true,
"shake": true,
"swing": true,
"tada": true,
"wobble": true,
"jello": true
},

"bouncing_entrances": {
"bounceIn": true,
"bounceInDown": true,
"bounceInLeft": true,
"bounceInRight": true,
"bounceInUp": true
},

"bouncing_exits": {
"bounceOut": true,
"bounceOutDown": true,
"bounceOutLeft": true,
"bounceOutRight": true,
"bounceOutUp": true
},

"fading_entrances": {
"fadeIn": true,
"fadeInDown": true,
"fadeInDownBig": true,
"fadeInLeft": true,
"fadeInLeftBig": true,
"fadeInRight": true,
"fadeInRightBig": true,
"fadeInUp": true,
"fadeInUpBig": true
},

"fading_exits": {
"fadeOut": true,
"fadeOutDown": true,
"fadeOutDownBig": true,
"fadeOutLeft": true,
"fadeOutLeftBig": true,
"fadeOutRight": true,
"fadeOutRightBig": true,
"fadeOutUp": true,
"fadeOutUpBig": true
},

"flippers": {
"flip": true,
"flipInX": true,
"flipInY": true,
"flipOutX": true,
"flipOutY": true
},

"lightspeed": {
"lightSpeedIn": true,
"lightSpeedOut": true
},

"rotating_entrances": {
"rotateIn": true,
"rotateInDownLeft": true,
"rotateInDownRight": true,
"rotateInUpLeft": true,
"rotateInUpRight": true
},

"rotating_exits": {
"rotateOut": true,
"rotateOutDownLeft": true,
"rotateOutDownRight": true,
"rotateOutUpLeft": true,
"rotateOutUpRight": true
},

"specials": {
"hinge": true,
"rollIn": true,
"rollOut": true
},

"zooming_entrances": {
"zoomIn": true,
"zoomInDown": true,
"zoomInLeft": true,
"zoomInRight": true,
"zoomInUp": true
},

"zooming_exits": {
"zoomOut": true,
"zoomOutDown": true,
"zoomOutLeft": true,
"zoomOutRight": true,
"zoomOutUp": true
},

"sliding_entrances": {
"slideInDown": true,
"slideInLeft": true,
"slideInRight": true,
"slideInUp": true
},

"sliding_exits": {
"slideOutDown": true,
"slideOutLeft": true,
"slideOutRight": true,
"slideOutUp": true
}
}
1 change: 1 addition & 0 deletions bower_components/animate.css/animate.min.css

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions bower_components/animate.css/bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "animate.css",
"version": "3.3.0",
"main": "./animate.css",
"ignore": [
".*",
"src",
"*.yml",
"Gemfile",
"Gemfile.lock",
"*.md"
]
}
19 changes: 19 additions & 0 deletions bower_components/animate.css/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "animate.css",
"version": "3.3.0",
"repository": {
"type": "git",
"url": "https://github.com/daneden/animate.css.git"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-autoprefixer": "~0.4.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-cssmin": "~0.8.0",
"load-grunt-tasks": "~0.2.0"
},
"spm": {
"main": "./animate.css"
}
}
37 changes: 37 additions & 0 deletions bower_components/classie/.bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "classie",
"main": "classie.js",
"version": "1.0.1",
"homepage": "https://github.com/desandro/classie",
"authors": [
"David DeSandro"
],
"description": "class helper",
"moduleType": [
"amd",
"globals",
"node"
],
"keywords": [
"class"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests",
"component.json"
],
"_release": "1.0.1",
"_resolution": {
"type": "version",
"tag": "v1.0.1",
"commit": "2bd6dd1c02d45924dee7e6c283df9668d2276322"
},
"_source": "git://github.com/desandro/classie.git",
"_target": "~1.0.1",
"_originalSource": "classie",
"_direct": true
}
28 changes: 28 additions & 0 deletions bower_components/classie/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Classie - class helper functions

[Ripped from bonzo](https://github.com/ded/bonzo) :heart: @ded

``` js
classie.has( element, 'my-class' ) // returns true/false
classie.add( element, 'my-new-class' ) // add new class
classie.remove( element, 'my-unwanted-class' ) // remove class
classie.toggle( element, 'my-class' ) // toggle class
```

## Package management

Install with [Bower](http://bower.io) :bird:

``` bash
bower install classie
```

Install with [Component](http://github.com/component/component)

``` bash
component install desandro/classie
```

## MIT license

classie is released under the [MIT license](http://desandro.mit-license.org).
Loading

0 comments on commit 0bcfa3c

Please sign in to comment.