Skip to content

Commit 1260c66

Browse files
Merge pull request #14 from CastleCSS/develop
Updates
2 parents 3130cc6 + 6329411 commit 1260c66

29 files changed

+7463
-3472
lines changed

.gitignore

100644100755
File mode changed.

Gruntfile.js

100644100755
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
/* Grunt Task configuration */
22
module.exports = function(grunt) {
33

4+
const Fiber = require('fibers');
5+
const sass = require('node-sass');
6+
47
/* Using jit-grunt for automatically loading all required plugins */
58
require('jit-grunt')(grunt);
69

@@ -13,6 +16,8 @@ module.exports = function(grunt) {
1316
// Compile Sass to CSS and produce SoureMaps;
1417
sass: {
1518
options: {
19+
implementation: sass,
20+
fiber: Fiber,
1621
sourceMap: false,
1722
outputStyle: 'uncompressed'
1823
},

LICENSE

100644100755
File mode changed.

README.md

100644100755
File mode changed.

about.html

100644100755
File mode changed.

clean.html

100644100755
File mode changed.

contact.html

100644100755
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,12 @@ <h2>Contact form</h2>
115115
<div class="form-fields">
116116
<div class="form-field has-value" data-castlecss-field="">
117117
<label for="gender" class="label">Gender</label>
118-
<label class="input-control input-radio">Male
119-
<input type="radio" name="radio1" checked="checked">
118+
<label class="input-control input-radio" for="radio_male">Male
119+
<input type="radio" name="radios" id="radio_male" checked="checked">
120120
<span class="input-indicator"></span>
121121
</label>
122-
<label class="input-control input-radio">Female
123-
<input type="radio" name="radio1">
122+
<label class="input-control input-radio" for="radio_female">Female
123+
<input type="radio" name="radios" id="radio_female">
124124
<span class="input-indicator"></span>
125125
</label>
126126
</div>
@@ -162,8 +162,8 @@ <h2>Contact form</h2>
162162

163163
<div class="form-fields">
164164
<div class="form-field has-value" data-castlecss-field="">
165-
<label class="input-control input-checkbox">I want to receive the newsletter
166-
<input type="checkbox">
165+
<label class="input-control input-checkbox" for="agree">I want to receive the newsletter
166+
<input type="checkbox" id="agree">
167167
<span class="input-indicator"></span>
168168
</label>
169169
</div>

dist/css/styles.min.css

100644100755
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/styles.min.css.map

100644100755
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/img/favicon.png

100644100755
File mode changed.

0 commit comments

Comments
 (0)