"title": "Sanyo Digital",
"width":"160",
"height":"33"
+ },
+ "coupons4printing": {
+ "name": "coupons4printing",
+ "url": "https://www.coupons4printing.com/",
+ "title": "Coupons For Printing",
+ "width":"60",
+ "height":"60"
}
},
"home": [
,"tutlance"
,"pillarwm"
,"sanyodigital"
+ ,"coupons4printing"
],
"footer": [
"polygon"
<body
class="layout-{{ page.layout }}{% if page.doc-tab %} page-{{ page.doc-tab}}{% endif %}"
>
- {% include global/notice.html %}
+ <!-- {% include global/notice.html %} -->
{% include global/deprecated.html %}
{{ content }}
{% include global/footer.html %}
+/* Bulma Base */
@charset "utf-8"
@import "minireset.sass"
+/* Bulma Components */
@charset "utf-8"
@import "breadcrumb.sass"
+/* Bulma Elements */
@charset "utf-8"
@import "box.sass"
+/* Bulma Form */
@charset "utf-8"
@import "shared.sass"
+/* Bulma Grid */
@charset "utf-8"
@import "columns.sass"
+/* Bulma Helpers */
@charset "utf-8"
@import "color.sass"
+/* Bulma Layout */
@charset "utf-8"
@import "hero.sass"
+/* Bulma Utilities */
@charset "utf-8"
@import "initial-variables.sass"
--- /dev/null
+bulma.io v0.9.0
+.button.is-primary
\ No newline at end of file
--- /dev/null
+\* Bulma Base \*
+minireset.css
+html
+article
+aside
+
+\* Bulma Components \*
+.breadcrumb
+.card
+.dropdown
+.level
+.media
+.menu
+.message
+.message.is-primary
+.modal
+.navbar
+.navbar.is-primary
+.pagination
+.panel
+.tabs
+
+\* Bulma Elements \*
+.box
+.button
+.button.is-primary
+.container
+.content
+.form
+.icon
+.notification
+.notification.is-primary
+.block
+.delete
+.progress
+.table
+.tag
+.tag:not(body).is-primary
+.title
+
+\* Bulma Form \*
+.checkbox
+.radio
+.file
+.input
+.is-primary.input
+.textarea
+.is-primary.textarea
+.select
+.select.is-primary
+.label
+.help
+.field
+
+\* Bulma Grid \*
+.column
+.columns
+.columns.is-variable
+.tile
+
+\* Bulma Helpers \*
+.has-text-primary
+.has-text-primary-light
+.has-text-primary-dark
+.has-background-primary
+.has-background-primary-light
+.has-background-primary-dark
+
+\* Bulma Utilities \*
+@keyframes spinAround
\ No newline at end of file
--- /dev/null
+\* Bulma Base \*
+minireset.css
+html
+article
+aside
+
+\* Bulma Components \*
+.breadcrumb
+.card
+.dropdown
+.level
+.media
+.menu
+.message
+.message.is-primary
+.modal
+.navbar
+.navbar.is-primary
+.pagination
+.panel
+.tabs
+
+\* Bulma Elements \*
+.box
+.button
+.button.is-primary
+.container
+.content
+.form
+.icon
+.notification
+.notification.is-primary
+.block
+.delete
+.progress
+.table
+.tag
+.tag:not(body).is-primary
+.title
+
+\* Bulma Form \*
+.checkbox
+.radio
+.file
+.input
+.is-primary.input
+.textarea
+.is-primary.textarea
+.select
+.select.is-primary
+.label
+.help
+.field
+
+\* Bulma Grid \*
+.column
+.columns
+.columns.is-variable
+.tile
+
+\* Bulma Helpers \*
+.has-text-primary
+.has-text-primary-light
+.has-text-primary-dark
+.has-background-primary
+.has-background-primary-light
+.has-background-primary-dark
+
+\* Bulma Utilities \*
+@keyframes spinAround
\ No newline at end of file
--- /dev/null
+https://fonts.googleapis.com/css?family=Nunito:400,700
+
+\* Bulma Base \*
+minireset.css
+html
+article
+aside
+
+.navbar
+.navbar.is-primary
+
+.button
+.button.is-primary
+.container
+.title
+
+\* Bulma Form \*
+.checkbox
+.radio
+.file
+.input
+.is-primary.input
+.textarea
+.is-primary.textarea
+.select
+.select.is-primary
+.label
+.help
+.field
+
+\* Bulma Utilities \*
+@keyframes spinAround
\ No newline at end of file
--- /dev/null
+\* Bulma Base \*
+minireset.css
+html
+article
+aside
\ No newline at end of file
--- /dev/null
+\* Bulma Base \*
+minireset.css
+html
+article
+aside
+
+hsl(39, 100%, 92%)
\ No newline at end of file
TEST_DIR=$(dirname $BASH_SOURCE)
FILES=$TEST_DIR/sass/*
CSS_DIR=$TEST_DIR/css
+CSS_FILES=$TEST_DIR/css/*.css
SASS_OPTIONS=--sourcemap=none
# FUNCTIONS
sass "$1" "${destFile}"
}
-run_it()
+build_all_css_files()
{
rm -r $CSS_DIR
fi
}
+check_keywords_inclusion()
+{
+ for f in $CSS_FILES
+ do
+ BASE=$(basename $f)
+ KEYWORDS_FILE=$TEST_DIR/keywords/$BASE.txt
+ while read p; do
+ if ! grep -q "$p" "$f"
+ then
+ # echo "Ok"
+ # else
+ echo "$p not found in $f"
+ fi
+ # echo "Checking for $p "
+ done < $KEYWORDS_FILE
+ done
+}
+
# EXECUTION
-run_it $@
+build_all_css_files $@
+check_keywords_inclusion $@