0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-07 20:42:44 +00:00

Add layers to all current themes

This commit is contained in:
Trevor Buckner
2023-01-27 14:57:20 -05:00
parent bef4d9f41f
commit 0bf96cb9e2
5 changed files with 1003 additions and 999 deletions

View File

@@ -1,22 +1,23 @@
@import (less) './themes/fonts/5e legacy/fonts.less'; @layer Legacy_5ePHB {
@import (less) './themes/assets/assets.less'; @import (less) './themes/fonts/5e legacy/fonts.less';
@import (less) './themes/phb.depricated.less'; @import (less) './themes/assets/assets.less';
//Colors @import (less) './themes/phb.depricated.less';
@background : #EEE5CE; // Light parchment //Colors
@noteGreen : #e0e5c1; // Pastel green @background : #EEE5CE; // Light parchment
@headerUnderline : #c9ad6a; // Gold @noteGreen : #e0e5c1; // Pastel green
@horizontalRule : #9c2b1b; // Maroon @headerUnderline : #c9ad6a; // Gold
@headerText : #58180D; // Dark maroon @horizontalRule : #9c2b1b; // Maroon
@monsterStatBackground : #FDF1DC; // Lighter parchment @headerText : #58180D; // Dark maroon
@captionText : #766649; // Brown @monsterStatBackground : #FDF1DC; // Lighter parchment
@page { margin: 0; } @captionText : #766649; // Brown
body { @page { margin: 0; }
body {
counter-reset : phb-page-numbers; counter-reset : phb-page-numbers;
} }
*{ *{
-webkit-print-color-adjust : exact; -webkit-print-color-adjust : exact;
} }
.useSansSerif(){ .useSansSerif(){
font-family : ScalySans; font-family : ScalySans;
em{ em{
font-family : ScalySans; font-family : ScalySans;
@@ -27,8 +28,8 @@ body {
font-weight : 800; font-weight : 800;
letter-spacing : -0.02em; letter-spacing : -0.02em;
} }
} }
.useColumns(@multiplier : 1){ .useColumns(@multiplier : 1){
column-count : 2; column-count : 2;
column-fill : auto; column-fill : auto;
column-gap : 1cm; column-gap : 1cm;
@@ -39,8 +40,8 @@ body {
-moz-column-width : 8cm * @multiplier; -moz-column-width : 8cm * @multiplier;
-webkit-column-gap : 1cm; -webkit-column-gap : 1cm;
-moz-column-gap : 1cm; -moz-column-gap : 1cm;
} }
.phb{ .phb{
.useColumns(); .useColumns();
counter-increment : phb-page-numbers; counter-increment : phb-page-numbers;
position : relative; position : relative;
@@ -357,11 +358,11 @@ body {
page-break-inside : avoid; page-break-inside : avoid;
break-inside : avoid; break-inside : avoid;
} }
} }
//***************************** //*****************************
// * SPELL LIST // * SPELL LIST
// *****************************/ // *****************************/
.phb .spellList{ .phb .spellList{
.useSansSerif(); .useSansSerif();
column-count : 4; column-count : 4;
column-span : all; column-span : all;
@@ -383,19 +384,19 @@ body {
page-break-inside : auto; page-break-inside : auto;
break-inside : auto; break-inside : auto;
} }
} }
//***************************** //*****************************
// * WIDE // * WIDE
// *****************************/ // *****************************/
.phb .wide{ .phb .wide{
column-span : all; column-span : all;
-webkit-column-span : all; -webkit-column-span : all;
-moz-column-span : all; -moz-column-span : all;
} }
//***************************** //*****************************
// * CLASS TABLE // * CLASS TABLE
// *****************************/ // *****************************/
.phb .classTable{ .phb .classTable{
margin-top : 25px; margin-top : 25px;
margin-bottom : 40px; margin-bottom : 40px;
border-collapse : separate; border-collapse : separate;
@@ -410,11 +411,11 @@ body {
h5{ h5{
margin-bottom : 10px; margin-bottom : 10px;
} }
} }
//************************************ //************************************
// * DESCRIPTIVE TEXT BOX // * DESCRIPTIVE TEXT BOX
// ************************************/ // ************************************/
.phb .descriptive{ .phb .descriptive{
margin-bottom : 1em; margin-bottom : 1em;
background-color : #faf7ea; background-color : #faf7ea;
font-family : ScalySans; font-family : ScalySans;
@@ -440,15 +441,15 @@ body {
font-weight : 800; font-weight : 800;
letter-spacing : -0.02em; letter-spacing : -0.02em;
} }
} }
.phb pre+.descriptive{ .phb pre+.descriptive{
margin-top : 8px; margin-top : 8px;
} }
//***************************** //*****************************
// * ARTIST CREDIT BLOCK // * ARTIST CREDIT BLOCK
// *****************************/ // *****************************/
.phb { .phb {
.artist { .artist {
position : absolute; position : absolute;
text-align : center; text-align : center;
@@ -472,11 +473,11 @@ body {
} }
} }
} }
} }
//***************************** //*****************************
// * TABLE OF CONTENTS // * TABLE OF CONTENTS
// *****************************/ // *****************************/
.phb .toc{ .phb .toc{
-webkit-column-break-inside : avoid; -webkit-column-break-inside : avoid;
page-break-inside : avoid; page-break-inside : avoid;
break-inside : avoid; break-inside : avoid;
@@ -494,4 +495,5 @@ body {
&>ul>li{ &>ul>li{
margin-bottom : 10px; margin-bottom : 10px;
} }
}
} }

View File

@@ -1,10 +1,11 @@
:root { @layer V3_5eDMG {
:root {
//Colors //Colors
--HB_Color_Accent : #EBCEC3; // Salmon --HB_Color_Accent : #EBCEC3; // Salmon
--HB_Color_Footnotes : #5C5C5C; // Dark gray --HB_Color_Footnotes : #5C5C5C; // Dark gray
} }
.page { .page {
background-image : url(/assets/DMG_background.png); background-image : url(/assets/DMG_background.png);
background-size : cover; background-size : cover;
@@ -16,4 +17,5 @@
.footnote { .footnote {
bottom : 40px; bottom : 40px;
} }
}
} }

View File

@@ -1,5 +1,4 @@
@layer V3_PHB { @layer V3_5ePHB {
@import (less) './themes/fonts/5e/fonts.less'; @import (less) './themes/fonts/5e/fonts.less';
@import (less) './themes/assets/assets.less'; @import (less) './themes/assets/assets.less';

View File

@@ -1,5 +1,4 @@
@layer V3_Blank { @layer V3_Blank {
@import (less) './themes/fonts/5e/fonts.less'; @import (less) './themes/fonts/5e/fonts.less';
@import (less) './themes/assets/assets.less'; @import (less) './themes/assets/assets.less';

View File

@@ -1,7 +1,8 @@
@import (less) './themes/fonts/Journal/fonts.less'; @layer V3_Journal {
@import (less) './themes/assets/assets.less'; @import (less) './themes/fonts/Journal/fonts.less';
@import (less) './themes/assets/assets.less';
:root { :root {
//Colors //Colors
--HB_Color_Background : unset; // Light parchment --HB_Color_Background : unset; // Light parchment
--HB_Color_Text : #412121; // Dark Maroon Brown --HB_Color_Text : #412121; // Dark Maroon Brown
@@ -9,9 +10,9 @@
--HB_Color_HeaderText : #58180D; // Dark Maroon --HB_Color_HeaderText : #58180D; // Dark Maroon
--HB_Color_CaptionText : #766649; // Brown --HB_Color_CaptionText : #766649; // Brown
--HB_Color_WatercolorStain : #BBAD82; // Light brown --HB_Color_WatercolorStain : #BBAD82; // Light brown
} }
.useSansSerif(){ .useSansSerif(){
font-family : PermanentMarker; font-family : PermanentMarker;
font-size : 0.3cm; font-size : 0.3cm;
line-height : 1.2em; line-height : 1.2em;
@@ -32,12 +33,12 @@
h5 + * { h5 + * {
margin-top : 0.1cm; margin-top : 0.1cm;
} }
} }
.useColumns(@multiplier : 1, @fillMode: balance){ .useColumns(@multiplier : 1, @fillMode: balance){
column-gap : 0.5cm; column-gap : 0.5cm;
} }
.page{ .page{
background-size : 200% 100%; background-size : 200% 100%;
background-repeat : no-repeat; background-repeat : no-repeat;
filter : drop-shadow(1px 4px 14px black); filter : drop-shadow(1px 4px 14px black);
@@ -57,12 +58,12 @@
& .columnWrapper { & .columnWrapper {
//transform: rotate(-0.5deg); // Breaks absolute positioning of images/footers. Wait for Chrome fix //transform: rotate(-0.5deg); // Breaks absolute positioning of images/footers. Wait for Chrome fix
} }
} }
//***************************** //*****************************
// * BASE // * BASE
// *****************************/ // *****************************/
.page{ .page{
color : var(--HB_Color_Text); color : var(--HB_Color_Text);
font-family : ReenieBeanie; font-family : ReenieBeanie;
font-size : 0.53cm; font-size : 0.53cm;
@@ -443,12 +444,12 @@
a:hover { a:hover {
color:red; color:red;
} }
} }
//***************************** //*****************************
// * SPELL LIST // * SPELL LIST
// *****************************/ // *****************************/
.page .spellList{ .page .spellList{
.useSansSerif(); .useSansSerif();
font-family : PermanentMarker; font-family : PermanentMarker;
column-count : 2; column-count : 2;
@@ -467,23 +468,23 @@
&.wide{ &.wide{
column-count : 4; column-count : 4;
} }
} }
//***************************** //*****************************
// * CLASS TABLE // * CLASS TABLE
// *****************************/ // *****************************/
.page .classTable{ .page .classTable{
th[colspan]:not([rowspan]) { th[colspan]:not([rowspan]) {
white-space : nowrap; white-space : nowrap;
} }
h5 + table{ h5 + table{
margin-top : 0.2cm; margin-top : 0.2cm;
} }
} }
//***************************** //*****************************
// * TABLE OF CONTENTS // * TABLE OF CONTENTS
// *****************************/ // *****************************/
.page .toc{ .page .toc{
-webkit-column-break-inside : avoid; -webkit-column-break-inside : avoid;
page-break-inside : avoid; page-break-inside : avoid;
break-inside : avoid; break-inside : avoid;
@@ -549,11 +550,12 @@
&.wide{ &.wide{
.useColumns(0.96, @fillMode: balance); .useColumns(0.96, @fillMode: balance);
} }
} }
//***************************** //*****************************
// * WIDE // * WIDE
// *****************************/ // *****************************/
.page .wide { .page .wide {
margin-bottom : 0.45cm; margin-bottom : 0.45cm;
}
} }