Skip to content

Commit 7e3da83

Browse files
committed
TOR v1.3 + brig v0.2e
1 parent f7118be commit 7e3da83

File tree

5 files changed

+415
-88
lines changed

5 files changed

+415
-88
lines changed

Anneau Unique/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Feuille de Personnage pour L'Anneau Unique, traduction de la [feuille VO de Mich
66

77
## Notes de version
88

9+
### Version 1.2 (2017-03-20)
10+
11+
* Correction du jet de Sagesse
12+
913
### Version 1.1 (2017-02-22)
1014

1115
* Retrait des demandes de Seuil de Réussite sur les jets (qui n'étaient pas utilisés)

Anneau Unique/sheet.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ <h2>Attributs</h2>
454454

455455
<tr>
456456
<td class="sheet-wisdom">
457-
<button type="roll" value="/me (@{character_name}) Sagesse.\n/roll 1t[feat] + [[@{wisdom}+?{Dés de Maîtrise|0}]]t[@{weary}]." name="wisdomcheck"></button>
457+
<button type="roll" value="/me (@{character_name}) Sagesse.\n/roll 1t[feat] + [[@{wisdom}+?{Dés de Maîtrise|0}]]t[@{weary}]" name="wisdomcheck"></button>
458458
<label>Sagesse</label>
459459
<div class="sheet-hover-info">&Agrave; compléter</div>
460460
<input type="number" name="attr_wisdom" value="0">

Anneau Unique/sheet.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"authors": "Michael Heilemann, Natha",
55
"roll20userid": "?,75857",
66
"preview": "sheet.jpg",
7-
"instructions": "Feuille de Personnage pour L'Anneau Unique, traduction de la feuille VO de Michael Heilemann. Version 1.1 (2017-02-22).\r\r**Important :** Pour que les jets fonctionnent correctement, suivez les instructions pour mettre en place les tables de jet n&eacute;c&eacute;ssaires, tel qu'indiqu&eacute; sur le Wiki Roll20 pour The One Ring (https://wiki.roll20.net/The_One_Ring)."
7+
"instructions": "Feuille de Personnage pour L'Anneau Unique, traduction de la feuille VO de Michael Heilemann. Version 1.2 (2017-03-20).\r\r**Important :** Pour que les jets fonctionnent correctement, suivez les instructions pour mettre en place les tables de jet n&eacute;c&eacute;ssaires, tel qu'indiqu&eacute; sur le [Wiki Roll20 pour The One Ring](https://wiki.roll20.net/The_One_Ring)."
88
}

Brigandyne/brigandyne.css

+103-13
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ select{
2525
box-sizing: border-box;
2626
}
2727
div{
28-
margin: none;
28+
margin: 0px 0px 0px 0px;
2929
padding: 0px 0px 0px 0px;
3030
background-color: transparent;
3131
/* border: 1px solid red; */
3232
}
3333
div.sheet-bgmain{
34-
width: 850px;
35-
max-width: 850px;
34+
width: 840px;
35+
max-width: 840px;
3636
text-align: left;
3737
background-color : #BCA87D;
3838
background-image: url('https://raw.githubusercontent.com/NathaTerrien/roll20-wip/master/Brigandyne/natural-paper.png');
@@ -63,20 +63,39 @@ div.sheet-mycol{
6363
text-align: left;
6464
vertical-align: top;
6565
background-color: #E0D3BA;
66-
border: 2px solid #64553E;
66+
border-style: solid;
67+
border-color: #64553E;
68+
}
69+
div.sheet-colune{
70+
border-width: 2px;
6771
border-radius: 0px 20px 20px 20px;
6872
}
73+
div.sheet-coldeb{
74+
border-width: 2px 1px 2px 2px;
75+
border-radius: 0px 0px 0px 20px;
76+
}
77+
div.sheet-colmid{
78+
border-width: 2px 1px 2px 1px;
79+
margin-left: -3px;
80+
}
81+
div.sheet-colfin{
82+
border-width: 2px 2px 2px 1px;
83+
border-radius: 0px 20px 20px 0px;
84+
margin-left: -3px;
85+
}
6986
div.sheet-coltitre{
7087
width: inherit;
71-
border-radius: 0px 17px 0px 0px;
72-
/* background-color: #231F20; */
73-
background: linear-gradient(to right, #231F20 70%, #64553E);
88+
background: #231F20;
7489
color: white;
7590
font-family: 'Contrail One';
7691
font-size: 14px;
7792
font-weight: normal;
7893
padding: 2px 10px 2px 10px;
7994
}
95+
div.sheet-coltitre.sheet-fin{
96+
border-radius: 0px 17px 0px 0px;
97+
background: linear-gradient(to right, #231F20 60%, #64553E);
98+
}
8099
div.sheet-inps{
81100
width: inherit;
82101
padding: 2px 10px 2px 10px;
@@ -93,14 +112,14 @@ div.sheet-bgsombre{
93112
display: table;
94113
width: 100%;
95114
border-collapse: collapse;
96-
border: 1px dotted #231F20;
115+
border: 1px dotted #231F20; /* 2px solid #231F20; */
97116
}
98117
.sheet-trow {
99118
display: table-row;
100119
border: 1px dotted #231F20;
101120
background-color: #E0D3BA;
102121
}
103-
.sheet-trow:nth-child(odd){
122+
.sheet-trow:nth-child(even){
104123
background-color: #B5A790;
105124
}
106125
.sheet-theading {
@@ -178,13 +197,20 @@ input[type="number"]{
178197
max-width: 50px;
179198
padding: 0px 0px 0px 0px;
180199
}
200+
input[type="number"].sheet-min{
201+
font-size: 16px;
202+
font-weight: normal;
203+
max-width: 70px;
204+
}
181205
input[type="number"].sheet-carac{
182206
text-align: center;
183207
font-weight: normal;
208+
font-size: 18px;
184209
max-width: 35px;
185210
}
186211
input[type="number"].sheet-carac:read-only,
187212
input[type="number"].sheet-carac:disabled {
213+
font-size: 20px;
188214
font-weight: bold;
189215
color: #64553E;
190216
}
@@ -199,7 +225,7 @@ input[type="number"].sheet-numtxt::-webkit-outer-spin-button {
199225
select{
200226
width: auto;
201227
margin: 0px 0px 0px 0px;
202-
padding: 0px 0px 0px 0px;
228+
padding: 0px 2px 0px 2px;
203229
height: 20px;
204230
font-family: "Patrick Hand";
205231
font-size: 14px;
@@ -232,12 +258,12 @@ input[type="checkbox"].sheet-affichage{
232258
margin: 0;
233259
}
234260
input[type="checkbox"].sheet-affichage + span{
235-
margin-left: -26px;
261+
margin-left: -40px;
236262
display: inline-block;
237263
text-align: center;
238264
padding: 0;
239-
width: 20px;
240-
max-width: 20px;
265+
width: 40px;
266+
max-width: 40px;
241267
height: 20px;
242268
z-index: 10;
243269
font-family: 'pictos';
@@ -254,4 +280,68 @@ input[type="checkbox"].sheet-affichage:checked + span{
254280
}
255281
/* ===== BOUTONS ===== */
256282

283+
/* === fieldset BOUTONS === */
284+
div.repcontrol{
285+
display: inline-block;
286+
width: 100%;
287+
}
288+
.repcontrol_move{
289+
height: 11px;
290+
line-height: 11px;
291+
margin-top: 4px;
292+
}
293+
.repcontrol_del {
294+
height: 22px;
295+
line-height: 12px;
296+
margin-top: 4px;
297+
width: 30px;
298+
}
299+
.repcontrol_add, .repcontrol_edit {
300+
color: transparent;
301+
box-shadow: none;
302+
background: transparent;
303+
border-color: transparent;
304+
text-shadow:none;
305+
width: 100px;
306+
}
307+
.repcontrol_add:focus, .repcontrol_edit:focus {
308+
outline: none;
309+
}
310+
.repcontrol .repcontrol_edit:after {
311+
content: 'y';
312+
visibility: visible;
313+
font-family: pictos;
314+
border: 1px solid transparent;
315+
border-radius: 2px;
316+
font-size: 20px;
317+
height: 20px;
318+
width: 20px;
319+
padding: 2px 4px 2px 4px;
320+
color: rgba(35,31,32,0.7);
321+
}
322+
.editmode ~ .repcontrol .repcontrol_edit:after {
323+
content: '2';
324+
}
325+
.repcontrol .repcontrol_add:before {
326+
content: '+';
327+
visibility: visible;
328+
font-family: pictos;
329+
border: 1px solid transparent;
330+
border-radius: 2px;
331+
font-size: 20px;
332+
height: 20px;
333+
width: 20px;
334+
padding: 2px 4px 2px 4px;
335+
color: rgba(35,31,32,0.7);
336+
}
337+
.repcontrol .repcontrol_edit:hover:after,
338+
.repcontrol .repcontrol_add:hover:before
339+
{
340+
box-shadow: 1px 1px 4px 2px rgba(35,31,32,0.8);
341+
border-color: #231F20;
342+
color: #231F20;
343+
}
344+
.repcontrol_add:focus:before, .repcontrol_edit:focus:after {
345+
color: #231F20;
346+
}
257347
/* ===== TEMPLATE ===== */

0 commit comments

Comments
 (0)