Ajout tarot et autres
This commit is contained in:
		| @@ -1,4 +1,8 @@ | ||||
|   /* ==================== (A) Fonts ==================== */ | ||||
|   @font-face { | ||||
|     font-family: "Rivanna"; | ||||
|     src: url('../fonts/rivanna.ttf') format("truetype"); | ||||
|   } | ||||
|    | ||||
|   :root { | ||||
|   /* =================== 1. ACTOR SHEET FONT STYLES =========== */ | ||||
| @@ -276,6 +280,8 @@ table {border: 1px solid #7a7971;} | ||||
| } | ||||
|  | ||||
| .fvtt-malefices .sheet-header h1.charname input { | ||||
|   font-family: Rivanna; | ||||
|   font-size: 3rem; | ||||
|   width: 100%; | ||||
|   height: 100%; | ||||
|   margin: 0; | ||||
| @@ -285,6 +291,8 @@ table {border: 1px solid #7a7971;} | ||||
|   -webkit-box-flex: 0; | ||||
|   -ms-flex: 0; | ||||
|   flex: 0; | ||||
|   font-family: Rivanna; | ||||
|   font-size: 2.2rem; | ||||
| } | ||||
|  | ||||
| .fvtt-malefices .sheet-body, | ||||
| @@ -453,7 +461,7 @@ section.sheet-body{padding: 0.25rem 0.5rem;} | ||||
| } | ||||
|  | ||||
| .sheet nav.sheet-tabs { | ||||
|   font-size: 0.70rem; | ||||
|   font-size: 1.2rem; | ||||
|   font-weight: bold; | ||||
|   height: 3rem; | ||||
|   flex: 0 0 3rem; | ||||
| @@ -817,10 +825,19 @@ ul, li { | ||||
| .chat-message .message-header .flavor-text, .chat-message .message-header .whisper-to {  | ||||
|   font-size: 0.9rem; | ||||
| } | ||||
| .chat-result-text, | ||||
| .chat-actor-name { | ||||
|   font-weight: bold; | ||||
|   font-family: Rivanna; | ||||
|   font-size: 1.2rem; | ||||
|   padding: 4px; | ||||
| } | ||||
|  | ||||
| .chat-result-success { | ||||
|   color:darkgreen; | ||||
| } | ||||
| .chat-result-failure { | ||||
|   color:darkred; | ||||
| } | ||||
| .chat-img { | ||||
|   width: 64px; | ||||
|   height: 64px; | ||||
|   | ||||
| @@ -55,7 +55,7 @@ | ||||
|   ], | ||||
|   "title": "Maléfices, le Jeu de Rôle", | ||||
|   "url": "https://www.uberwald.me/gitea/public/fvtt-malefices", | ||||
|   "version": "10.0.6", | ||||
|   "download": "https://www.uberwald.me/gitea/public/fvtt-malefices/archive/fvtt-malefices-v10.0.6.zip", | ||||
|   "version": "10.0.7", | ||||
|   "download": "https://www.uberwald.me/gitea/public/fvtt-malefices/archive/fvtt-malefices-v10.0.7.zip", | ||||
|   "background": "systems/fvtt-malefices/images/ui/malefice_welcome_page.webp" | ||||
| } | ||||
| @@ -2,7 +2,7 @@ | ||||
|   {{#if actorImg}} | ||||
|   <img class="actor-icon" src="{{actorImg}}" alt="{{alias}}" /> | ||||
|   {{/if}} | ||||
|   <h4 class=chat-actor-name>{{alias}}</h4> | ||||
|   <h4 class="chat-actor-name">{{alias}}</h4> | ||||
| </div> | ||||
|  | ||||
|   <hr> | ||||
| @@ -30,36 +30,36 @@ | ||||
|  | ||||
|         {{#if isSuccess}} | ||||
|           {{#if isCritical}} | ||||
|             <li><strong>Réussite Critique !</strong></li> | ||||
|             <li><label class="chat-result-text chat-result-success ">Réussite Critique !</label></li> | ||||
|             {{#if arme}} | ||||
|               {{#if arme.system.dommagecritiquemort}} | ||||
|                 <li><strong>La victime est morte !</strong></li> | ||||
|                 <li><label class="chat-result-text chat-result-success">La victime est morte !</label></li> | ||||
|               {{else}} | ||||
|                 {{#if arme.system.dommagecritiqueko}} | ||||
|                   <li><strong>La victime est KO !</strong></li> | ||||
|                   <li><label class="chat-result-text chat-result-success ">La victime est KO !</label></li> | ||||
|                 {{/if}} | ||||
|                 <li><strong>La victime subit {{arme.system.dommagecritique}} dommages</strong></li> | ||||
|                 <li><label class="chat-result-text chat-result-success ">La victime subit {{arme.system.dommagecritique}} dommages</label></li> | ||||
|               {{/if}} | ||||
|             {{/if}} | ||||
|           {{else}}   | ||||
|             {{#if isPart}} | ||||
|               <li><strong>Réussite Particulière !</strong></li> | ||||
|               <li><label class="chat-result-text chat-result-success ">Réussite Particulière !</label></li> | ||||
|               {{#if arme}} | ||||
|                 <li><strong>La victime subit {{arme.system.dommagepart}} dommages</strong></li> | ||||
|                 <li><label class="chat-result-text chat-result-success ">La victime subit {{arme.system.dommagepart}} dommages</label></li> | ||||
|               {{/if}}         | ||||
|  | ||||
|             {{else}} | ||||
|               <li><strong>Succés !</strong></li> | ||||
|               <li><label class="chat-result-text chat-result-success ">Succés !</label></li> | ||||
|               {{#if arme}} | ||||
|                 <li><strong>La victime subit {{arme.system.dommagenormale}} dommages</strong></li> | ||||
|                 <li><label class="chat-result-text chat-result-success ">La victime subit {{arme.system.dommagenormale}} dommages</label></li> | ||||
|               {{/if}}         | ||||
|             {{/if}}         | ||||
|           {{/if}} | ||||
|         {{else}} | ||||
|           {{#if isFumble}} | ||||
|             <li><strong>Echec Critique !</strong></li> | ||||
|             <li><label class="chat-result-text chat-result-failure ">Echec Critique !</label></li> | ||||
|           {{else}} | ||||
|             <li><strong>Echec !</strong></li> | ||||
|             <li><label class="chat-result-text chat-result-failure">Echec !</label></li> | ||||
|           {{/if}} | ||||
|         {{/if}} | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user