Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.sass-cache
.idea
node_modules
35 changes: 35 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({

sass: {
dist: {
options: {
style: 'expanded'
},//options

files: {
'scss/css/eventCalendar.css': 'scss/eventCalendar.scss',
'scss/css/eventCalendar_theme_responsive.css': 'scss/eventCalendar_theme_responsive.scss'
}
}//dist

},//sass
watch: {
options: { livereload: false },
sass: {
files: ['scss/**/*.scss'],
tasks: ['sass:dist']
}//sass

}//watch


});//initConfig

grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.registerTask("default", ['watch']);


};
24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "jQueryEventCalendar",
"version": "0.6.8",
"description": "Event Calendar Plugin",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Gonzalo2683/jQueryEventCalendar.git"
},
"author": "Fork Jaime Fernandez",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gonzalo2683/jQueryEventCalendar/issues"
},
"homepage": "https://github.com/Gonzalo2683/jQueryEventCalendar",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-sass": "^0.9.2",
"grunt-contrib-watch": "^0.6.1"
}
}
18 changes: 18 additions & 0 deletions scss/config/_vars.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//Vars
$main-font: 'Arial';

//Current Month block and arrows
$current-month-block-bg-color : #138DA5;
$current-month-block-border-color : #E3E3E3;
$current-mont-text-color: #fff;
$arrow-color : #fff;

//Events
$event-cell-bg-color : #89B814;
$event-cell-text-color : #fff;

//Subtitle Block
$next-event-title-color : #807E7E;
$event-title-color : #0E8EAB;
$time-box-bg-color : #807E7E;
$time-box-text-color : #fff;
83 changes: 83 additions & 0 deletions scss/css/eventCalendar.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions scss/css/eventCalendar.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading