v1.1.3.0
continuous-integration/drone/push Build is passing Details
continuous-integration/drone Build is passing Details

main v1.1.3.0-main
dmitry.kirdyashkin 2024-06-07 16:31:09 +03:00
parent 8bcc14b80c
commit 5fa973f3d2
4 changed files with 127 additions and 16 deletions

View File

@ -1,4 +1,7 @@
# Библиотека стилей # Библиотека стилей
## v1.1.3.0
* добавлен общий стиль оформления журналов pf2e
* оформление приключения неприятности в Отари вынесен в отдельный файл
## v1.1.2.0 ## v1.1.2.0
* добавлен стиль для приключения неприятности в Отари * добавлен стиль для приключения неприятности в Отари
## v1.1.1.0 ## v1.1.1.0

@ -1 +1 @@
Subproject commit a457525145ba1d5ad3b1762c40056b6316099b21 Subproject commit ce582f5b3835762ea5c67d6669dee0c08f8e09c1

View File

@ -0,0 +1,81 @@
@font-face {
font-family : ff-good-pro-regular;
src : url(https://static.kdiva.ru/foundry-main/pf2/fonts/FFGoodPro-Regular.woff2);
}
@font-face {
font-family : sabon-cyr-roman;
src : url(https://static.kdiva.ru/foundry-main/pf2/fonts/SabonCyr-Roman.woff2);
}
@font-face {
font-family : kurale-regular;
src : url(https://static.kdiva.ru/foundry-main/pf2/fonts/Kurale-Regular.otf);
}
/* SYSTEM */
.sheet.journal-entry .journal-entry-content {
background-image: url(null);
background-color: #ffffff;
}
/* COMMON */
.pf-core {
font-family : 'sabon-cyr-roman';
margin : 10px;
font-size : 16px;
}
.pf-core p{
text-indent : 0px;
margin : auto;
}
.pf-core p+p {
text-indent : 20px;
}
.pf-core h1,.pf-core h2,.pf-core h3 {
margin-bottom : auto;
font-family : 'kurale-regular';
}
.pf-core h4 {
margin-bottom : auto;
font-family : 'ff-good-pro-regular';
font-weight : bold;
}
/* TEXT BLOCKS */
.pf-core .note {
border-image-outset : 6px 0px;
border-image-width : 15px;
margin-top : 20px;
margin-bottom : 20px;
padding : 20px;
font-family : 'ff-good-pro-regular';
}
.pf-core .note h4 {
text-align : center;
font-weight : bold;
margin-top : -5px;
margin-bottom : 5px;
font-family : 'ff-good-pro-regular';
}
.pf-core .note p {
line-height: 20px;
}
.pf-core .descriptive {
font-family : 'ff-good-pro-regular';
}
.pf-core .descriptive p{
line-height : 20px;
}
.pf-core .descriptive hr {
border : 1px solid #000000;
}

View File

@ -1,25 +1,52 @@
@import url('https://fonts.googleapis.com/css2?family=Tauri&display=swap'); .tio-page {
inherits : all;
}
.core-page { .tio-page h3,.tio-page h4 {
font-family : 'Mookmania Regular'; color : #306237;
margin : 10px;
} }
/* TEXT BLOCKS */ /* TEXT BLOCKS */
.core-page .note { .tio-page .note {
background-color : #f0e9e2; background-color : #f0e9e2;
border-image : url(https://static.kdiva.ru/foundry-main/pf2/adventures/troubles-in-otari/css/note-border-2.webp) 40 stretch; border-image : url(https://static.kdiva.ru/foundry-main/pf2/adventures/troubles-in-otari/css/note-border.webp) 40 stretch;
border-image-outset : 6px 0px; border-image-outset : 6px 0px;
border-image-width : 20px; border-image-width : 15px;
font-family : 'Tauri';
margin-top : 20px; margin-top : 20px;
padding : 10px; margin-bottom : 20px;
padding : 20px;
font-family : ff-good-pro-regular;
} }
.core-page .note h4 { .tio-page .note h4 {
text-align: center; color : #306237;
font-size: 30px; }
color: #306237;
margin-top : 10px; .tio-page .note p {
margin-bottom : -10px; line-height: 20px;
}
.tio-page .descriptive {
color : #9a3d4e;
}
.tio-page .header {
background-image : url(https://static.kdiva.ru/foundry-main/pf2/adventures/troubles-in-otari/css/page-header.webp);
padding : 50px;
background-repeat : no-repeat;
background-size : cover;
background-position : center center;
}
.tio-page .image {
float : right;
border-width : 0px;
}
.tio-page .image figcaption {
text-align : center;
}
.tio-page .image figcaption h4 {
font-family : 'kurale-regular';
} }