-
Notifications
You must be signed in to change notification settings - Fork 0
/
rockpaperscissors.css
78 lines (74 loc) · 1.15 KB
/
rockpaperscissors.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
body {
font-family: 'Poppins', sans-serif;
font-size: 20px;
text-align: center;
background: #C2E9FB;
color: #172972;
margin: 3em;
}
strong {
text-decoration: underline;
}
button {
background: #172972;
color: #FFFFFF;
border: 1px;
border-radius: 30px;
padding: 10px 25px;
font-size: 20px;
font-family: 'Poppins', sans-serif; font-weight: bold;
}
button:hover{
background:#387780;
}
.return{
background: white;
}
.return:hover{
background: white;
}
.scoreboard {
width: 14em;
margin: auto;
border: 2px solid #172972;
}
.scoreboard h2 {
border-bottom: 2px solid #172972;
margin: 0;
padding: 10px;
}
.scoreboard table {
margin: 10px auto;
width: 100%;
border-collapse: collapse;
}
.scoreboard th, .scoreboard td {
text-align: center;
}
.scoreboard td {
font-size: 3em;
padding: 0 20px;
}
#status {
margin-top: 20px;
}
/* unvisited link */
a:link {
color: #172972;
text-decoration: none;
}
/* visited link */
a:visited {
color: #172972;
text-decoration: none;
}
/* mouse over link */
a:hover {
color: #172972;
text-decoration: none;
}
/* selected link */
a:active {
color: #172972;
text-decoration: none;
}