diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..bc88f5f --- /dev/null +++ b/styles.css @@ -0,0 +1,101 @@ +/* FOR USE WITH https://github.com/cswendrowski/FoundryVTT-Custom-CSS */ + +@import url('https://fonts.googleapis.com/css2?family=Gentium+Book+Plus:ital,wght@0,400;0,700;1,400;1,700&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); +/* @import url('https://nextcloud.kdiva.ru/s/d2ZNBFzpKWfaCzd/download?path=%2F&Files=Mookmania.otf'); */ + +@font-face { + font-family: 'Mookmania'; /*a name to be used later*/ + src: url('https://nextcloud.kdiva.ru/s/3FaCStydyDEmGYD/download/Mookmania.otf'); /*URL to font*/ +} + +.frostmaiden-page { + background-image : url(https://i.imgur.com/J3g2tfx.jpg); + background-size : contain; + /* font-family : 'Gentium Book Plus', serif; */ + /* font-family : 'Mookmania'; */ +} + +/* NOTES */ +.frostmaiden-page .note { + background-color : #afd0c9; + border-image : url(https://i.imgur.com/KtrHa62.png) 14 stretch; + border-image-outset : 6px 0px; + border-image-width : 11px; + padding-left : 10px; + padding-bottom : 1px; + margin : 7px; + font-family : 'Open Sans', sans-serif; +} + +.frostmaiden-page .note h5 { + font-weight: bold; + font-size: large; + margin-bottom: 10px; +} + +.frostmaiden-page .note ul { + padding-left: 20px; +} + +.frostmaiden-page .descriptive { + background-color : #c9e2e7; + border-image : url(https://i.imgur.com/FFpU8c5.png) 12 stretch; + border-image-outset : 4px; + border-image-width : 11px; + padding : 10px; + margin : 7px; + font-family : 'Open Sans', sans-serif; +} + +/* TABLES */ +.frostmaiden-page tr:nth-child(odd) td { + background-color : #cbd4db; +} + +table, th, td, tr { + border-style : none; +} + +/* PARAGRAPH */ +.frostmaiden-page p { + padding-left : 10px; + margin : 1em 0 0 0; +} +.frostmaiden-page p + p { + padding-left : 10px; + text-indent : 20px; + margin : 0; +} + +.frostmaiden-page ul { + padding-left : 20px; +} + +.frostmaiden-page b{ + font-weight : bold; + color : #6e2424; +} + +/* HEADERS */ +.frostmaiden-page h1, +.frostmaiden-page h2, +.frostmaiden-page h3, +.frostmaiden-page h4 { + letter-spacing : 1px; + font-weight : normal; + padding-left : 10px; + color : #6e2424; +} +.frostmaiden-page:not(:has(.frontCover)):not(:has(.insideCover)):not(:has(.credits)):not(:has(.toc)):not(:has(.backCover)) h1 { + color : #455360; + letter-spacing : 1px; + font-size : 48px; + margin-bottom : 20px +} +.frostmaiden-page h3 { + border-bottom : 2px solid #d7c598; +} +.frostmaiden-page h5 { + text-shadow : #000 0px 0px 0.1px; +} \ No newline at end of file