Skip to content

Commit

Permalink
Added website
Browse files Browse the repository at this point in the history
  • Loading branch information
TanayParikh committed May 11, 2018
1 parent 1c3e9a5 commit e229d45
Show file tree
Hide file tree
Showing 112 changed files with 14,460 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Website/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

RewriteEngine on
RewriteCond %{HTTP_HOST} ^monetafms\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.monetafms\.com$
RewriteRule ^Github$ "https\:\/\/github\.com\/TanayParikh\/MonetaFMS" [R=301,L]

RewriteOptions inherit
Options -Indexes
RewriteCond %{HTTP_HOST} ^monetafms\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.monetafms\.com$
RewriteRule ^github$ "https\:\/\/github\.com\/TanayParikh\/MonetaFMS" [R=301,L]

24 changes: 24 additions & 0 deletions Website/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 Website/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 Website/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 Website/bower_components/animate.css/animate.min.css

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions Website/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 Website/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 Website/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 Website/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).
27 changes: 27 additions & 0 deletions Website/bower_components/classie/bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"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"
]
}
Loading

0 comments on commit e229d45

Please sign in to comment.