Skip to content

Commit e229d45

Browse files
committed
Added website
1 parent 1c3e9a5 commit e229d45

File tree

112 files changed

+14460
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+14460
-0
lines changed

Website/.htaccess

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
RewriteEngine on
3+
RewriteCond %{HTTP_HOST} ^monetafms\.com$ [OR]
4+
RewriteCond %{HTTP_HOST} ^www\.monetafms\.com$
5+
RewriteRule ^Github$ "https\:\/\/github\.com\/TanayParikh\/MonetaFMS" [R=301,L]
6+
7+
RewriteOptions inherit
8+
Options -Indexes
9+
RewriteCond %{HTTP_HOST} ^monetafms\.com$ [OR]
10+
RewriteCond %{HTTP_HOST} ^www\.monetafms\.com$
11+
RewriteRule ^github$ "https\:\/\/github\.com\/TanayParikh\/MonetaFMS" [R=301,L]
12+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "animate.css",
3+
"version": "3.3.0",
4+
"main": "./animate.css",
5+
"ignore": [
6+
".*",
7+
"src",
8+
"*.yml",
9+
"Gemfile",
10+
"Gemfile.lock",
11+
"*.md"
12+
],
13+
"homepage": "https://github.com/daneden/animate.css",
14+
"_release": "3.3.0",
15+
"_resolution": {
16+
"type": "version",
17+
"tag": "3.3.0",
18+
"commit": "31b8e9026143342d14ba4ff9213181394a8b2e90"
19+
},
20+
"_source": "git://github.com/daneden/animate.css.git",
21+
"_target": "~3.3.0",
22+
"_originalSource": "animate.css",
23+
"_direct": true
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
module.exports = function(grunt) {
2+
3+
require('load-grunt-tasks')(grunt);
4+
5+
var concatAnim;
6+
7+
grunt.initConfig({
8+
9+
pkg: grunt.file.readJSON('package.json'),
10+
11+
concat: {
12+
dist: {
13+
src: [ 'source/_base.css', 'source/**/*.css' ], // _base.css required for .animated helper class
14+
dest: 'animate.css'
15+
}
16+
},
17+
18+
autoprefixer: { // https://github.com/nDmitry/grunt-autoprefixer
19+
options: {
20+
browsers: ['last 2 versions', 'bb 10']
21+
},
22+
no_dest: {
23+
src: 'animate.css' // output file
24+
}
25+
},
26+
27+
cssmin: {
28+
minify: {
29+
src: ['animate.css'],
30+
dest: 'animate.min.css',
31+
}
32+
},
33+
34+
watch: {
35+
css: {
36+
files: [ 'source/**/*', 'animate-config.json' ],
37+
tasks: ['default']
38+
}
39+
}
40+
41+
});
42+
43+
// fuction to perform custom task
44+
concatAnim = function () {
45+
46+
var categories = grunt.file.readJSON('animate-config.json'),
47+
category, files, file,
48+
target = [ 'source/_base.css' ],
49+
count = 0;
50+
51+
for ( category in categories ) {
52+
if ( categories.hasOwnProperty(category) ) {
53+
files = categories[category]
54+
for (file in files) {
55+
if ( files.hasOwnProperty(file) && files[file] ) {
56+
target.push('source/' + category + '/' + file + '.css');
57+
count += 1;
58+
}
59+
}
60+
}
61+
}
62+
63+
if (!count) {
64+
grunt.log.writeln('No animations activated.');
65+
} else {
66+
grunt.log.writeln(count + (count > 1 ? ' animations' : ' animation') + ' activated.');
67+
}
68+
69+
grunt.config('concat', { 'animate.css': target });
70+
grunt.task.run('concat');
71+
72+
};
73+
74+
// register task
75+
grunt.registerTask('concat-anim', 'Concatenates activated animations', concatAnim); // custom task
76+
grunt.registerTask('default', ['concat-anim', 'autoprefixer', 'cssmin']);
77+
grunt.registerTask('dev', ['watch']);
78+
79+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
{
2+
3+
"attention_seekers": {
4+
"bounce": true,
5+
"flash": true,
6+
"pulse": true,
7+
"rubberBand": true,
8+
"shake": true,
9+
"swing": true,
10+
"tada": true,
11+
"wobble": true,
12+
"jello": true
13+
},
14+
15+
"bouncing_entrances": {
16+
"bounceIn": true,
17+
"bounceInDown": true,
18+
"bounceInLeft": true,
19+
"bounceInRight": true,
20+
"bounceInUp": true
21+
},
22+
23+
"bouncing_exits": {
24+
"bounceOut": true,
25+
"bounceOutDown": true,
26+
"bounceOutLeft": true,
27+
"bounceOutRight": true,
28+
"bounceOutUp": true
29+
},
30+
31+
"fading_entrances": {
32+
"fadeIn": true,
33+
"fadeInDown": true,
34+
"fadeInDownBig": true,
35+
"fadeInLeft": true,
36+
"fadeInLeftBig": true,
37+
"fadeInRight": true,
38+
"fadeInRightBig": true,
39+
"fadeInUp": true,
40+
"fadeInUpBig": true
41+
},
42+
43+
"fading_exits": {
44+
"fadeOut": true,
45+
"fadeOutDown": true,
46+
"fadeOutDownBig": true,
47+
"fadeOutLeft": true,
48+
"fadeOutLeftBig": true,
49+
"fadeOutRight": true,
50+
"fadeOutRightBig": true,
51+
"fadeOutUp": true,
52+
"fadeOutUpBig": true
53+
},
54+
55+
"flippers": {
56+
"flip": true,
57+
"flipInX": true,
58+
"flipInY": true,
59+
"flipOutX": true,
60+
"flipOutY": true
61+
},
62+
63+
"lightspeed": {
64+
"lightSpeedIn": true,
65+
"lightSpeedOut": true
66+
},
67+
68+
"rotating_entrances": {
69+
"rotateIn": true,
70+
"rotateInDownLeft": true,
71+
"rotateInDownRight": true,
72+
"rotateInUpLeft": true,
73+
"rotateInUpRight": true
74+
},
75+
76+
"rotating_exits": {
77+
"rotateOut": true,
78+
"rotateOutDownLeft": true,
79+
"rotateOutDownRight": true,
80+
"rotateOutUpLeft": true,
81+
"rotateOutUpRight": true
82+
},
83+
84+
"specials": {
85+
"hinge": true,
86+
"rollIn": true,
87+
"rollOut": true
88+
},
89+
90+
"zooming_entrances": {
91+
"zoomIn": true,
92+
"zoomInDown": true,
93+
"zoomInLeft": true,
94+
"zoomInRight": true,
95+
"zoomInUp": true
96+
},
97+
98+
"zooming_exits": {
99+
"zoomOut": true,
100+
"zoomOutDown": true,
101+
"zoomOutLeft": true,
102+
"zoomOutRight": true,
103+
"zoomOutUp": true
104+
},
105+
106+
"sliding_entrances": {
107+
"slideInDown": true,
108+
"slideInLeft": true,
109+
"slideInRight": true,
110+
"slideInUp": true
111+
},
112+
113+
"sliding_exits": {
114+
"slideOutDown": true,
115+
"slideOutLeft": true,
116+
"slideOutRight": true,
117+
"slideOutUp": true
118+
}
119+
}

Website/bower_components/animate.css/animate.min.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "animate.css",
3+
"version": "3.3.0",
4+
"main": "./animate.css",
5+
"ignore": [
6+
".*",
7+
"src",
8+
"*.yml",
9+
"Gemfile",
10+
"Gemfile.lock",
11+
"*.md"
12+
]
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "animate.css",
3+
"version": "3.3.0",
4+
"repository": {
5+
"type": "git",
6+
"url": "https://github.com/daneden/animate.css.git"
7+
},
8+
"devDependencies": {
9+
"grunt": "~0.4.1",
10+
"grunt-autoprefixer": "~0.4.0",
11+
"grunt-contrib-watch": "~0.5.3",
12+
"grunt-contrib-concat": "~0.3.0",
13+
"grunt-contrib-cssmin": "~0.8.0",
14+
"load-grunt-tasks": "~0.2.0"
15+
},
16+
"spm": {
17+
"main": "./animate.css"
18+
}
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "classie",
3+
"main": "classie.js",
4+
"version": "1.0.1",
5+
"homepage": "https://github.com/desandro/classie",
6+
"authors": [
7+
"David DeSandro"
8+
],
9+
"description": "class helper",
10+
"moduleType": [
11+
"amd",
12+
"globals",
13+
"node"
14+
],
15+
"keywords": [
16+
"class"
17+
],
18+
"license": "MIT",
19+
"ignore": [
20+
"**/.*",
21+
"node_modules",
22+
"bower_components",
23+
"test",
24+
"tests",
25+
"component.json"
26+
],
27+
"_release": "1.0.1",
28+
"_resolution": {
29+
"type": "version",
30+
"tag": "v1.0.1",
31+
"commit": "2bd6dd1c02d45924dee7e6c283df9668d2276322"
32+
},
33+
"_source": "git://github.com/desandro/classie.git",
34+
"_target": "~1.0.1",
35+
"_originalSource": "classie",
36+
"_direct": true
37+
}
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Classie - class helper functions
2+
3+
[Ripped from bonzo](https://github.com/ded/bonzo) :heart: @ded
4+
5+
``` js
6+
classie.has( element, 'my-class' ) // returns true/false
7+
classie.add( element, 'my-new-class' ) // add new class
8+
classie.remove( element, 'my-unwanted-class' ) // remove class
9+
classie.toggle( element, 'my-class' ) // toggle class
10+
```
11+
12+
## Package management
13+
14+
Install with [Bower](http://bower.io) :bird:
15+
16+
``` bash
17+
bower install classie
18+
```
19+
20+
Install with [Component](http://github.com/component/component)
21+
22+
``` bash
23+
component install desandro/classie
24+
```
25+
26+
## MIT license
27+
28+
classie is released under the [MIT license](http://desandro.mit-license.org).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "classie",
3+
"main": "classie.js",
4+
"version": "1.0.1",
5+
"homepage": "https://github.com/desandro/classie",
6+
"authors": [
7+
"David DeSandro"
8+
],
9+
"description": "class helper",
10+
"moduleType": [
11+
"amd",
12+
"globals",
13+
"node"
14+
],
15+
"keywords": [
16+
"class"
17+
],
18+
"license": "MIT",
19+
"ignore": [
20+
"**/.*",
21+
"node_modules",
22+
"bower_components",
23+
"test",
24+
"tests",
25+
"component.json"
26+
]
27+
}

0 commit comments

Comments
 (0)