-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordplay-light.css
150 lines (150 loc) · 2.86 KB
/
wordplay-light.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
html {
font-family: system-ui, sans-serif;
font-size: 18px;
}
#triviaJSON {
display: none;
}
article {
display: block;
}
header h1 {
font-family: system-ui, sans-serif;
font-size: 3rem;
color: #8B138B;
margin: .5rem 0;
letter-spacing: -3px;
}
header h1 span {
font-size: 2.3rem;
color: #000000;
}
header h1.slim {
font-family: system-ui, sans-serif;
font-size: 1.7rem;
color: #8B138B;
margin: .5rem 0;
letter-spacing: -2px;
}
header h1.slim span {
font-size: 1.3rem;
color: #000000;
}
h1 {
font-size: 1.1em;
}
img {
max-width: 100%;
}
button {
border: thin solid #8c8c8c;;
margin: .5rem;
font-size: 1.3rem;
display: inline;
text-align: left;
max-width: 45%;
}
button#next {
display: inline-block;
margin-top: 1rem;
border: thick solid #8B138B;
color: #FFFFFF;
background-color: #8B138B;
font-weight: bold;
}
button#skip {
font-size: 1rem;
display: none;
}
button:focus, button:hover {
border: thin solid black;
outline: medium solid #FFFACD;
box-shadow:0 0 10px 8px #FFFACD;
}
button#next:focus, button#next:hover {
outline: thin solid #FFFACD;
box-shadow:0 0 7px 3px #FFFACD;
}
button.c:active{
outline: thin solid green;
box-shadow:5px 5px 10px 2px green;
}
button.a:active,
button.b:active,
button.d:active,
button.e:active,
button.f:active
{
outline: thin solid red;
box-shadow:2px 2px 6px 1px red;
}
p {
margin: 0;
}
p#intro {
font-size: 1rem;
}
p#intro span {
font-size: .9rem;
}
#result {
font-family: serif;
font-size: 1rem;
font-weight: bold;
float: right;
border: thin black solid;
padding: .5rem;
display: inline;
margin-left: 1rem;
}
#check p {
margin-top: -3%;
}
section {
display: block;
}
.c0 {
color: red;
}
.c10 {
color: green;
}
.c10 img {
max-width: 20%;
}
footer a:link {
text-decoration: none;
color: #550055;
}
footer a:visited {
color: #6F096F;
}
footer a:focus, footer a:hover {
border-bottom: 1px solid;
}
footer a:active {
color: #AC4FAC;
color: #962F96;
}
@media only screen and (max-width: 480px) {
header h1 {
margin: .7rem 0;
font-size: 2rem;
margin: .5rem 0;
letter-spacing: -2px;
}
header h1 span {
font-size: 1.65rem;
}
#check p {
margin-top: -10%;
}
button {
max-width: 45%;
}
}
@media only screen and (max-width:350px) {
button {
max-width: 100%;
}
}