bespoke-theme-greeny
v0.0.4
Published
Greeny theme for Bespoke.js
Downloads
4
Maintainers
Readme
bespoke-theme-greeny
Greeny theme for Bespoke.js — View demo
Please note: This theme is in beta and designed for use with a future release of Bespoke.js
Download
Download the production version or the development version.
Usage
This theme is shipped in a UMD format, meaning that it is available as a CommonJS/AMD module or browser global.
For example, when using CommonJS modules:
var bespoke = require('bespoke'),
greeny = require('bespoke-theme-greeny');
bespoke.from('#presentation', [
greeny.theme(),
greeny.scale()
]);
When using browser globals:
bespoke.from('#presentation', [
bespoke.themes.greeny.scale(), // You don't have to use bespoke-scale
bespoke.themes.greeny.theme()
]);
Special class
.inverse
background-color: #2ecc71;
color: #2c3e50;
}
.stick
border-width: 3px 0px;
border-style: solid;
border-color: #DDD;
}
.single-words {
word-spacing: 9999px;
line-height: 2.9em;
overflow: hidden;
}
Credits
This theme was built with generator-bespoketheme.