-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (84 loc) · 1.71 KB
/
Copy pathstyle.css
File metadata and controls
100 lines (84 loc) · 1.71 KB
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
body {
background: darkslategray;
margin: 0;
padding: 0;
}
.header {
color: black;
text-align: center;
padding: 12px 20px;
width: 100%;
background-color: white;
font-family: "Lucida Console", "Courier New", monospace;
}
.header {
margin-bottom: 24px;
}
.scoreboard {
font-family: "Lucida Console", "Courier New", monospace;
display: flex;
font-size: 24px;
border: solid black 4px;
margin-left: auto;
margin-right: auto;
justify-content: center;
height: 300px;
width: 300px;
max-width: 300px;
max-height: 75px;
}
.result {
display: flex;
font-family: "Lucida Console", "Courier New", monospace;
font-size: 30px;
margin-left: auto;
margin-right: auto;
justify-content: center;
align-items: center;
}
.choices {
display: flex;
justify-content: space-evenly;
align-items: center;
margin-left: auto;
margin-right: auto;
width: 350px;
height: 100px;
max-width: 350px;
max-height: 100px;
}
#rock {
display: block;
background-color: darkslategray;
border: solid white 2px;
border-radius: 50%;
width: 100%;
font-size: 75px;
cursor: pointer;
}
#paper {
display: block;
width: 100%;
background-color: darkslategray;
font-size: 75px;
border-radius: 50%;
margin: 12px;
border: solid white 2px;
cursor: pointer;
}
#scissors {
display: block;
width: 100%;
background-color: darkslategray;
border-radius: 50%;
font-size: 75px;
border: solid white 2px;
cursor: pointer;
}
#below {
display: flex;
margin: 16px;
justify-self: center;
align-self: center;
font-family: "Lucida Console", "Courier New", monospace;
}