mirror of
https://github.com/stolksdorf/homebrewery.git
synced 2025-12-13 15:15:57 +00:00
Adding in the extra wide block
This commit is contained in:
@@ -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',
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -402,3 +402,13 @@
|
|||||||
box-shadow : none;
|
box-shadow : none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//*****************************
|
||||||
|
// * WIDE
|
||||||
|
// *****************************/
|
||||||
|
.phb .wide{
|
||||||
|
column-span : all;
|
||||||
|
-webkit-column-span : all;
|
||||||
|
-moz-column-span : all;
|
||||||
|
}
|
||||||
@@ -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"
|
||||||
|
|||||||
@@ -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;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user