-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpangram-checker.css
76 lines (72 loc) · 1 KB
/
pangram-checker.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
/* BODY */
body {
color: black;
background-color: white;
font-family: Verdana, sans-serif;
font-size: 16px;
letter-spacing: 0.25px;
line-height: 125%;
}
h1 {
font-weight: bold;
color: maroon;
font-size: 110%;
text-align: center;
margin: 40px;
}
h2 {
font-weight: bold;
color: maroon;
font-size: 105%
}
h3 {
font-weight: bold;
color: maroon;
font-size: 100%
}
a:link {
color: maroon;
}
a:visited {
color: maroon;
}
a:active {
color: maroon;
}
.boxed-text {
border: 1px solid black;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 8px;
padding-right: 8px;
}
.center {
text-align: center;
}
.maroon {
color: maroon;
}
.boldmaroon {
font-weight: bold;
color: maroon;
}
/* BUTTONS */
button {
font-weight: bold;
color: #e0e0e0;
background-color: maroon;
border: 0;
border-radius: 4px;
margin: 4px;
padding: 6px;
}
button.selected {
font-weight: bold;
}
button.deselected {
font-weight: normal;
}
button:hover {
margin: 5px;
padding: 5px;
}