blob: b36241e346f2359c1e6cc65b072e00d017ae1ce7 [file] [log] [blame]
Jon West6d00f9f2019-10-25 22:33:49 -04001input[type="radio"] {
2 background-color: transparent;
3 border: .0625em solid #0080ff;
4 border-radius: 50%;
5 box-shadow: inset 0 0 0 0 black;
6 cursor: pointer;
7 font: inherit;
8 height: 1em;
9 outline: none;
10 width: 1em;
11 -moz-appearance: none;
12 -webkit-appearance: none;
Jon West6d00f9f2019-10-25 22:33:49 -040013}
14
15input[type="radio"]:checked {
Eric Parkc0197652021-07-03 13:46:35 +090016 background-color: grey;
17 box-shadow: inset 0 0 0 .1875em white;
18 -webkit-transition: background .15s, box-shadow .1s;
19 transition: background .15s, box-shadow .1s;
Jon West6d00f9f2019-10-25 22:33:49 -040020}
Eric Parkc0197652021-07-03 13:46:35 +090021
Eric Park92e916a2021-07-03 13:49:20 +090022.navbar-brand-image {
23 filter: invert(100%);
24}
25
Jon West197faff2019-05-02 18:27:18 -040026#wrap_a {
27 max-width: 800px;
28 margin: 0 auto;
29}
30
31#output_a {
32 margin: 2em 1em;
33 text-align: left;
34 /* font-family: monospace; */
35 font-size: 1.1em;
36 line-height: 1.5;
37 color: #fc9;
38}
Eric Parkc0197652021-07-03 13:46:35 +090039
Jon West197faff2019-05-02 18:27:18 -040040#output_a .title {
41 color: white;
42 text-align: center;
43}
Eric Parkc0197652021-07-03 13:46:35 +090044
Jon West197faff2019-05-02 18:27:18 -040045#output_a ul {
46 color: white;
47}
Eric Parkc0197652021-07-03 13:46:35 +090048
Jon West197faff2019-05-02 18:27:18 -040049#output_a ul li {
50 margin: 1em;
51}
Eric Parkc0197652021-07-03 13:46:35 +090052
Jon West197faff2019-05-02 18:27:18 -040053#output_a ul a {
54 color: lightblue;
55 text-decoration: none;
56}
Eric Parkc0197652021-07-03 13:46:35 +090057
Jon West197faff2019-05-02 18:27:18 -040058#output_a ul a.win {
59 color: limegreen;
60}
Eric Parkc0197652021-07-03 13:46:35 +090061
Jon West197faff2019-05-02 18:27:18 -040062#output_a ul a.lose {
63 color: red;
64}
Eric Parkc0197652021-07-03 13:46:35 +090065
Jon West197faff2019-05-02 18:27:18 -040066#output_a ul a:hover {
67 color: white;
68}
Eric Parkc0197652021-07-03 13:46:35 +090069
Jon West197faff2019-05-02 18:27:18 -040070#output_a .inv {
71 color: #ca9;
72 font-size: 0.8em;
73 padding-top: 2em;
Eric Parkc0197652021-07-03 13:46:35 +090074}