Skip to content
Merged
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
Empty file modified .gitignore
100644 → 100755
Empty file.
5 changes: 5 additions & 0 deletions Gruntfile.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
/* Grunt Task configuration */
module.exports = function(grunt) {

const Fiber = require('fibers');
const sass = require('node-sass');

/* Using jit-grunt for automatically loading all required plugins */
require('jit-grunt')(grunt);

Expand All @@ -13,6 +16,8 @@ module.exports = function(grunt) {
// Compile Sass to CSS and produce SoureMaps;
sass: {
options: {
implementation: sass,
fiber: Fiber,
sourceMap: false,
outputStyle: 'uncompressed'
},
Expand Down
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified README.md
100644 → 100755
Empty file.
Empty file modified about.html
100644 → 100755
Empty file.
Empty file modified clean.html
100644 → 100755
Empty file.
12 changes: 6 additions & 6 deletions contact.html
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,12 @@ <h2>Contact form</h2>
<div class="form-fields">
<div class="form-field has-value" data-castlecss-field="">
<label for="gender" class="label">Gender</label>
<label class="input-control input-radio">Male
<input type="radio" name="radio1" checked="checked">
<label class="input-control input-radio" for="radio_male">Male
<input type="radio" name="radios" id="radio_male" checked="checked">
<span class="input-indicator"></span>
</label>
<label class="input-control input-radio">Female
<input type="radio" name="radio1">
<label class="input-control input-radio" for="radio_female">Female
<input type="radio" name="radios" id="radio_female">
<span class="input-indicator"></span>
</label>
</div>
Expand Down Expand Up @@ -162,8 +162,8 @@ <h2>Contact form</h2>

<div class="form-fields">
<div class="form-field has-value" data-castlecss-field="">
<label class="input-control input-checkbox">I want to receive the newsletter
<input type="checkbox">
<label class="input-control input-checkbox" for="agree">I want to receive the newsletter
<input type="checkbox" id="agree">
<span class="input-indicator"></span>
</label>
</div>
Expand Down
2 changes: 1 addition & 1 deletion dist/css/styles.min.css
100644 → 100755

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/styles.min.css.map
100644 → 100755

Large diffs are not rendered by default.

Empty file modified dist/img/favicon.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified dist/img/logo.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion dist/img/logo.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/favicon.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/logo.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/logo.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified index.html
100644 → 100755
Empty file.
Empty file modified js/menu.js
100644 → 100755
Empty file.
Loading