blob: 1f8f6ef02c0f1d757b0f8ab184585c84af75d328 [file] [log] [blame]
Eric Park8173c742021-07-04 06:27:56 +09001.heading {
2 font-size: 4.5rem;
3}
4
5@media only screen and (max-width: 768px) {
6 .heading {
7 font-size: 4rem;
8 }
9}
10
11@media only screen and (max-width: 425px) {
12 .heading {
13 font-size: 3rem;
14 }
15}
16
Jon West6d00f9f2019-10-25 22:33:49 -040017input[type="radio"] {
18 background-color: transparent;
19 border: .0625em solid #0080ff;
20 border-radius: 50%;
21 box-shadow: inset 0 0 0 0 black;
22 cursor: pointer;
23 font: inherit;
24 height: 1em;
25 outline: none;
26 width: 1em;
27 -moz-appearance: none;
28 -webkit-appearance: none;
Jon West6d00f9f2019-10-25 22:33:49 -040029}
30
31input[type="radio"]:checked {
Eric Parkc0197652021-07-03 13:46:35 +090032 background-color: grey;
33 box-shadow: inset 0 0 0 .1875em white;
34 -webkit-transition: background .15s, box-shadow .1s;
35 transition: background .15s, box-shadow .1s;
Jon West6d00f9f2019-10-25 22:33:49 -040036}
Eric Parkc0197652021-07-03 13:46:35 +090037
Eric Park92e916a2021-07-03 13:49:20 +090038.navbar-brand-image {
39 filter: invert(100%);
40}
41
Eric Parkdaee3df2021-07-04 06:08:59 +090042.list-unstyled a {
43 color: #0080ff;
44}
45
Jon West197faff2019-05-02 18:27:18 -040046#wrap_a {
47 max-width: 800px;
48 margin: 0 auto;
49}
50
51#output_a {
52 margin: 2em 1em;
53 text-align: left;
54 /* font-family: monospace; */
55 font-size: 1.1em;
56 line-height: 1.5;
57 color: #fc9;
58}
Eric Parkc0197652021-07-03 13:46:35 +090059
Jon West197faff2019-05-02 18:27:18 -040060#output_a .title {
61 color: white;
62 text-align: center;
63}
Eric Parkc0197652021-07-03 13:46:35 +090064
Jon West197faff2019-05-02 18:27:18 -040065#output_a ul {
66 color: white;
67}
Eric Parkc0197652021-07-03 13:46:35 +090068
Jon West197faff2019-05-02 18:27:18 -040069#output_a ul li {
70 margin: 1em;
71}
Eric Parkc0197652021-07-03 13:46:35 +090072
Jon West197faff2019-05-02 18:27:18 -040073#output_a ul a {
74 color: lightblue;
75 text-decoration: none;
76}
Eric Parkc0197652021-07-03 13:46:35 +090077
Jon West197faff2019-05-02 18:27:18 -040078#output_a ul a.win {
79 color: limegreen;
80}
Eric Parkc0197652021-07-03 13:46:35 +090081
Jon West197faff2019-05-02 18:27:18 -040082#output_a ul a.lose {
83 color: red;
84}
Eric Parkc0197652021-07-03 13:46:35 +090085
Jon West197faff2019-05-02 18:27:18 -040086#output_a ul a:hover {
87 color: white;
88}
Eric Parkc0197652021-07-03 13:46:35 +090089
Jon West197faff2019-05-02 18:27:18 -040090#output_a .inv {
91 color: #ca9;
92 font-size: 0.8em;
93 padding-top: 2em;
Eric Parkc0197652021-07-03 13:46:35 +090094}