Compare commits
No commits in common. "7ac94f33d25a5a50bf6f970944a1f31282c8b6d5" and "34a7850975f74eb4799852a61bdf48e2cf722211" have entirely different histories.
7ac94f33d2
...
34a7850975
|
@ -1,7 +1,3 @@
|
||||||
body {
|
|
||||||
font-size: 1.75em;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer hr {
|
footer hr {
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
border-top: 1px solid lightgray;
|
border-top: 1px solid lightgray;
|
||||||
|
@ -152,25 +148,8 @@ footer a, footer a:visited {
|
||||||
|
|
||||||
.player-body {
|
.player-body {
|
||||||
display: none;
|
display: none;
|
||||||
margin-left: 2ex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.player-summary {
|
|
||||||
padding-left: 3ex;
|
|
||||||
text-indent: -3ex;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.player-visible:checked ~ .player-body {
|
.player-visible:checked ~ .player-body {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
|
||||||
-webkit-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
appearance: none;
|
|
||||||
}
|
|
||||||
select, option {
|
|
||||||
font-size: inherit;
|
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="player-effects" id="player-{{ player.order }}-effects">
|
<div class="player-effects" id="player-{{ player.order }}-effects">
|
||||||
{% for effect_num, effect in player.fear.items %}
|
{% for effect_num, effect in player.fear.items %}
|
||||||
<div class="effect effect-{{ effect_num }}">
|
<div class="effect effect-{{ effect_num }}">
|
||||||
#{{ effect_num|add:1 }}
|
Effect #{{ effect_num|add:1 }}
|
||||||
|
|
||||||
<input type="hidden" name="player-{{ player.order }}-effect-{{ effect_num }}-fear-orig" value="{{ effect.pure_fear }}">
|
<input type="hidden" name="player-{{ player.order }}-effect-{{ effect_num }}-fear-orig" value="{{ effect.pure_fear }}">
|
||||||
<select name="player-{{ player.order }}-effect-{{ effect_num }}-fear"{% if player.ready %} disabled{% endif %}>
|
<select name="player-{{ player.order }}-effect-{{ effect_num }}-fear"{% if player.ready %} disabled{% endif %}>
|
||||||
|
@ -106,7 +106,7 @@
|
||||||
{% if not results_only %}
|
{% if not results_only %}
|
||||||
<template id="effect-template">
|
<template id="effect-template">
|
||||||
<div class="effect">
|
<div class="effect">
|
||||||
#<span class="effect-num">?</span>
|
Effect #<span class="effect-num">?</span>
|
||||||
|
|
||||||
<input type="hidden" class="fear-orig" value="0">
|
<input type="hidden" class="fear-orig" value="0">
|
||||||
<select class="fear">
|
<select class="fear">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user