forked from public/fvtt-cthulhu-eternal
Basic dice roll support
This commit is contained in:
@ -1,10 +1,39 @@
|
||||
@font-face {
|
||||
font-family: "Georama";
|
||||
src: url("../assets/fonts/georama.woff2") format("woff2");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Broadway";
|
||||
src: url("../assets/fonts/broadway.woff2") format("woff2");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Caslon";
|
||||
src: url("../fonts/caslonpro-regular.otf") format("truetype");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Caslon Bold";
|
||||
src: url("../fonts/caslonpro-bold.otf") format("truetype");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Caslon Bold Italic";
|
||||
src: url("../fonts/caslonpro-bolditalic.otf") format("truetype");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Caslon Italic";
|
||||
src: url("../fonts/caslonpro-italic.otf") format("truetype");
|
||||
}
|
||||
:root {
|
||||
--font-size-standard: 0.9rem;
|
||||
--background-image-base: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../assets/ui/jazzage_background_main.webp");
|
||||
/*--background-image-base: url("../assets/ui/jazzage_background_main.webp");*/
|
||||
--font-primary: "Georama";
|
||||
--font-secondary: "Georama";
|
||||
--font-title: "Broadway";
|
||||
--logo-standard: url("../assets/logos/reanimated-ce-logo.webp");
|
||||
--color-success: darkgreen;
|
||||
--color-failure: darkred;
|
||||
--color-critical-success: lightgreen;
|
||||
--color-critical-failure: lightcoral;
|
||||
}
|
||||
.era-icon-color {
|
||||
/*filter: invert(90%) sepia(10%) saturate(1215%) hue-rotate(55deg) brightness(93%) contrast(89%);*/
|
||||
@ -50,7 +79,8 @@ i.fvtt-cthulhu-eternal {
|
||||
.chat-message.whisper {
|
||||
font-family: var(--font-primary);
|
||||
background-image: var(--background-image-base);
|
||||
background-repeat: no-repeat;
|
||||
background-repeat: repeat-y;
|
||||
background-position: 0%;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
.fvtt-cthulhu-eternal .protagonist-sheet-common label {
|
||||
@ -179,6 +209,8 @@ i.fvtt-cthulhu-eternal {
|
||||
display: flex;
|
||||
}
|
||||
.fvtt-cthulhu-eternal .protagonist-main .protagonist-pc .protagonist-right .protagonist-name input {
|
||||
font-family: var(--font-title);
|
||||
font-size: calc(var(--font-size-standard) * 1.4);
|
||||
width: 400px;
|
||||
}
|
||||
.fvtt-cthulhu-eternal .protagonist-main .protagonist-pc .protagonist-right .protagonist-infos {
|
||||
@ -1285,6 +1317,38 @@ i.fvtt-cthulhu-eternal {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.dice-roll .intro-chat .intro-right ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.dice-roll .intro-chat .intro-right ul li {
|
||||
margin: 0 10px;
|
||||
font-family: var(--font-primary);
|
||||
font-size: calc(var(--font-size-standard) * 1);
|
||||
}
|
||||
.dice-roll .intro-chat .intro-right ul .result-success {
|
||||
color: var(--color-success);
|
||||
font-family: var(--font-title);
|
||||
font-size: calc(var(--font-size-standard) * 1.2);
|
||||
}
|
||||
.dice-roll .intro-chat .intro-right ul .result-critical-success {
|
||||
color: var(--color-critical-success);
|
||||
font-family: var(--font-title);
|
||||
font-size: calc(var(--font-size-standard) * 1.2);
|
||||
}
|
||||
.dice-roll .intro-chat .intro-right ul .result-failure {
|
||||
color: var(--color-failure);
|
||||
font-family: var(--font-title);
|
||||
font-size: calc(var(--font-size-standard) * 1.2);
|
||||
}
|
||||
.dice-roll .intro-chat .intro-right ul .result-critical-failure {
|
||||
color: var(--color-critical-failure);
|
||||
font-family: var(--font-title);
|
||||
font-size: calc(var(--font-size-standard) * 1.2);
|
||||
}
|
||||
.dice-roll .intro-chat .intro-right .introText {
|
||||
font-family: var(--font-secondary);
|
||||
font-size: calc(var(--font-size-standard) * 1.2);
|
||||
|
Reference in New Issue
Block a user