1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-13 08:35:56 +00:00

Adding in the extra wide block

This commit is contained in:
Scott Tolksdorf
2016-05-31 19:47:13 -04:00
parent 6611bc9eff
commit c50de28900
5 changed files with 22 additions and 2 deletions

View File

@@ -26,6 +26,11 @@ module.exports = [
icon : 'fa-arrows-v', icon : 'fa-arrows-v',
gen : "<div style='margin-top:140px'></div>\n\n" gen : "<div style='margin-top:140px'></div>\n\n"
}, },
{
name : "Wide Block",
icon : 'fa-arrows-h',
gen : "<div class='wide'>\nEverything in here will be extra wide. Tables, text, everything! Beware though, CSS columns can behave a bit weird sometimes.\n</div>\n"
},
{ {
name : "Image", name : "Image",
icon : 'fa-image', icon : 'fa-image',

View File

@@ -11,7 +11,7 @@ var Navbar = React.createClass({
<Nav.item href='/homebrew' className='homebrewLogo'> <Nav.item href='/homebrew' className='homebrewLogo'>
<div>The Homebrewery</div> <div>The Homebrewery</div>
</Nav.item> </Nav.item>
<Nav.item>v2.1.0</Nav.item> <Nav.item>v2.1.1</Nav.item>
</Nav.section> </Nav.section>
{this.props.children} {this.props.children}
</Nav.base> </Nav.base>

View File

@@ -401,4 +401,14 @@
blockquote{ blockquote{
box-shadow : none; box-shadow : none;
} }
}
//*****************************
// * WIDE
// *****************************/
.phb .wide{
column-span : all;
-webkit-column-span : all;
-moz-column-span : all;
} }

View File

@@ -1,7 +1,7 @@
{ {
"name": "naturalcrit", "name": "naturalcrit",
"description": "D&D Tools for the discerning DM", "description": "D&D Tools for the discerning DM",
"version": "2.1.0", "version": "2.1.1",
"scripts": { "scripts": {
"postinstall": "gulp prod", "postinstall": "gulp prod",
"start": "node server.js" "start": "node server.js"

View File

@@ -561,3 +561,8 @@ table {
.phb.print blockquote { .phb.print blockquote {
box-shadow: none; box-shadow: none;
} }
.phb .wide {
column-span: all;
-webkit-column-span: all;
-moz-column-span: all;
}