blob: 024c06fe5f87602da600d742a13e6b5a13840abe [file] [log] [blame]
Jon West6d00f9f2019-10-25 22:33:49 -04001
2input[type="radio"] {
3 background-color: transparent;
4 border: .0625em solid #0080ff;
5 border-radius: 50%;
6 box-shadow: inset 0 0 0 0 black;
7 cursor: pointer;
8 font: inherit;
9 height: 1em;
10 outline: none;
11 width: 1em;
12 -moz-appearance: none;
13 -webkit-appearance: none;
14
15}
16
17input[type="radio"]:checked {
18 background-color: grey;
19 box-shadow: inset 0 0 0 .1875em #white;
20 -webkit-transition: background .15s, box-shadow .1s;
21 transition: background .15s, box-shadow .1s;
22}
Jon West197faff2019-05-02 18:27:18 -040023#wrap_a {
24 max-width: 800px;
25 margin: 0 auto;
26}
27
28#output_a {
29 margin: 2em 1em;
30 text-align: left;
31 /* font-family: monospace; */
32 font-size: 1.1em;
33 line-height: 1.5;
34 color: #fc9;
35}
36#output_a .title {
37 color: white;
38 text-align: center;
39}
40#output_a ul {
41 color: white;
42}
43#output_a ul li {
44 margin: 1em;
45}
46#output_a ul a {
47 color: lightblue;
48 text-decoration: none;
49}
50#output_a ul a.win {
51 color: limegreen;
52}
53#output_a ul a.lose {
54 color: red;
55}
56#output_a ul a:hover {
57 color: white;
58}
59#output_a .inv {
60 color: #ca9;
61 font-size: 0.8em;
62 padding-top: 2em;
63}