mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-13 10:52:46 +00:00
Split off the old stlying in a separate file
This commit is contained in:
@@ -1,31 +1,33 @@
|
|||||||
.phb{
|
.brewRendererOld {
|
||||||
//Double hr for full width elements
|
.phb_old{
|
||||||
hr+hr+blockquote{
|
//Double hr for full width elements
|
||||||
column-span : all;
|
hr+hr+blockquote{
|
||||||
-webkit-column-span : all;
|
column-span : all;
|
||||||
-moz-column-span : all;
|
-webkit-column-span : all;
|
||||||
}
|
-moz-column-span : all;
|
||||||
|
}
|
||||||
|
|
||||||
//*****************************
|
//*****************************
|
||||||
// * CLASS TABLE
|
// * CLASS TABLE
|
||||||
// *****************************/
|
// *****************************/
|
||||||
hr+table{
|
hr+table{
|
||||||
margin-top : -5px;
|
margin-top : -5px;
|
||||||
margin-bottom : 50px;
|
margin-bottom : 50px;
|
||||||
padding-top : 10px;
|
padding-top : 10px;
|
||||||
border-collapse : separate;
|
border-collapse : separate;
|
||||||
background-color : white;
|
background-color : white;
|
||||||
border : initial;
|
border : initial;
|
||||||
border-style : solid;
|
border-style : solid;
|
||||||
border-image-outset : 37px 17px;
|
border-image-outset : 37px 17px;
|
||||||
border-image-repeat : round;
|
border-image-repeat : round;
|
||||||
border-image-slice : 150 200 150 200;
|
border-image-slice : 150 200 150 200;
|
||||||
border-image-source : @frameBorderImage;
|
border-image-source : @frameBorderImage;
|
||||||
border-image-width : 47px;
|
border-image-width : 47px;
|
||||||
}
|
}
|
||||||
h5+hr+table{
|
h5+hr+table{
|
||||||
column-span : all;
|
column-span : all;
|
||||||
-webkit-column-span : all;
|
-webkit-column-span : all;
|
||||||
-moz-column-span : all;
|
-moz-column-span : all;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,9 @@
|
|||||||
|
|
||||||
@page { margin: 0; }
|
@page { margin: 0; }
|
||||||
|
|
||||||
body {
|
//TODO: Change
|
||||||
counter-reset : old-phb-page-numbers;
|
.brewRenderer {
|
||||||
|
counter-reset : phb-page-numbers;
|
||||||
}
|
}
|
||||||
.useSansSerif(){
|
.useSansSerif(){
|
||||||
font-family : ScalySans;
|
font-family : ScalySans;
|
||||||
@@ -45,7 +46,7 @@ body {
|
|||||||
-webkit-print-color-adjust : exact;
|
-webkit-print-color-adjust : exact;
|
||||||
}
|
}
|
||||||
.useColumns();
|
.useColumns();
|
||||||
counter-increment : old-phb-page-numbers;
|
counter-increment : phb-page-numbers;
|
||||||
position : relative;
|
position : relative;
|
||||||
z-index : 15;
|
z-index : 15;
|
||||||
box-sizing : border-box;
|
box-sizing : border-box;
|
||||||
@@ -61,6 +62,7 @@ body {
|
|||||||
text-rendering : optimizeLegibility;
|
text-rendering : optimizeLegibility;
|
||||||
page-break-before : always;
|
page-break-before : always;
|
||||||
page-break-after : always;
|
page-break-after : always;
|
||||||
|
color : red;
|
||||||
//*****************************
|
//*****************************
|
||||||
// * BASE
|
// * BASE
|
||||||
// *****************************/
|
// *****************************/
|
||||||
@@ -301,7 +303,7 @@ body {
|
|||||||
color : #c9ad6a;
|
color : #c9ad6a;
|
||||||
text-align : center;
|
text-align : center;
|
||||||
&.auto::after {
|
&.auto::after {
|
||||||
content : counter(old-phb-page-numbers);
|
content : counter(phb-page-numbers);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.footnote{
|
.footnote{
|
||||||
|
|||||||
@@ -6,6 +6,8 @@ module.exports = function(vitreum){
|
|||||||
<link href="//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
|
<link href="//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
|
||||||
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700" rel="stylesheet" type="text/css" />
|
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700" rel="stylesheet" type="text/css" />
|
||||||
<link rel="icon" href="/assets/homebrew/favicon.ico" type="image/x-icon" />
|
<link rel="icon" href="/assets/homebrew/favicon.ico" type="image/x-icon" />
|
||||||
|
|
||||||
|
<link href="/assets/depricated/phb.old.css" rel="stylesheet" />
|
||||||
<title>The Homebrewery - NaturalCrit</title>
|
<title>The Homebrewery - NaturalCrit</title>
|
||||||
${vitreum.head}
|
${vitreum.head}
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"assets": ["*.png","*.otf", "*.ico"],
|
"assets": ["*.png","*.otf", "*.ico", "phb.old.css"],
|
||||||
"shared":[
|
"shared":[
|
||||||
],
|
],
|
||||||
"libs" : [
|
"libs" : [
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ const OLD_BrewRenderer = React.createClass({
|
|||||||
},
|
},
|
||||||
|
|
||||||
renderPage : function(pageText, index){
|
renderPage : function(pageText, index){
|
||||||
return <div className='phb' id={`p${index + 1}`} dangerouslySetInnerHTML={{__html:Markdown.render(pageText)}} key={index} />
|
return <div className='phb_old' id={`p${index + 1}`} dangerouslySetInnerHTML={{__html:Markdown.render(pageText)}} key={index} />
|
||||||
},
|
},
|
||||||
|
|
||||||
renderPages : function(){
|
renderPages : function(){
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
|
|
||||||
@import (less) './client/homebrew/phbStyle/phb.style.less';
|
|
||||||
//@import (less) './shared/depricated/phb.old.css';
|
|
||||||
.pane{
|
.pane{
|
||||||
position : relative;
|
position : relative;
|
||||||
}
|
}
|
||||||
@@ -30,7 +28,7 @@
|
|||||||
}
|
}
|
||||||
.pages{
|
.pages{
|
||||||
margin : 30px 0px;
|
margin : 30px 0px;
|
||||||
&>.phb{
|
&>.phb_old{
|
||||||
margin-right : auto;
|
margin-right : auto;
|
||||||
margin-bottom : 30px;
|
margin-bottom : 30px;
|
||||||
margin-left : auto;
|
margin-left : auto;
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1 +1,44 @@
|
|||||||
# Old test!
|
# Old test!
|
||||||
|
|
||||||
|
#### Create Acne
|
||||||
|
*5th-level illusion*
|
||||||
|
___
|
||||||
|
- **Casting Time:** 1 action
|
||||||
|
- **Range:** 60 feet
|
||||||
|
- **Components:** V, M (a crushed button worth at least 1cp, a small doll, discarded gum wrapper)
|
||||||
|
- **Duration:** Instantaneous
|
||||||
|
|
||||||
|
A flame, equivalent in brightness to a torch, springs from from an object that you touch.
|
||||||
|
The effect look like a regular flame, but it creates no heat and doesn't use oxygen.
|
||||||
|
A *continual flame* can be covered or hidden but not smothered or quenched.
|
||||||
|
|
||||||
|
<div class='classTable'>
|
||||||
|
##### The Archivist
|
||||||
|
| Level | Proficiency Bonus | Features | Statistical Occultism|
|
||||||
|
|:---:|:---:|:---|:---:|
|
||||||
|
| 1st | +2 | Astrological Botany | +1 |
|
||||||
|
| 2nd | +2 | Genetic Banishing | +1 |
|
||||||
|
| 3rd | +2 | Genetic Banishing | +2 |
|
||||||
|
| 4th | +2 | Ability Score Improvement, Statistical Occultism | +3 |
|
||||||
|
| 5th | +3 | Demonic Anthropology | +4 |
|
||||||
|
| 6th | +3 | Ability Score Improvement | +5 |
|
||||||
|
| 7th | +3 | Astrological Chemistry | +5 |
|
||||||
|
| 8th | +3 | Ability Score Improvement, Plasma Outlaw | +6 |
|
||||||
|
| 9th | +4 | Consecrated Biochemistry | +7 |
|
||||||
|
| 10th | +4 | Statistical Occultism | +8 |
|
||||||
|
| 11th | +4 | Ritual Astronomy | +8 |
|
||||||
|
| 12th | +4 | Ability Score Improvement | +8 |
|
||||||
|
| 13th | +5 | Astrological Botany | +9 |
|
||||||
|
| 14th | +5 | Ability Score Improvement | +10 |
|
||||||
|
| 15th | +5 | Divinatory Mineralogy | +10 |
|
||||||
|
| 16th | +5 | Ability Score Improvement, Gunpowder Torturer | +10 |
|
||||||
|
| 17th | +6 | ─ | +11 |
|
||||||
|
| 18th | +6 | Infernal Banker | +11 |
|
||||||
|
| 19th | +6 | Ability Score Improvement | +12 |
|
||||||
|
| 20th | +6 | Infernal Banker | +12 |
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
\page
|
||||||
|
|
||||||
|
yo oy oyoyoyo
|
||||||
Reference in New Issue
Block a user