-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
90 lines (73 loc) · 1.39 KB
/
styles.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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
}
header {
background-color: #7f917d;
text-align: center;
height: 100px;
padding: 30px 0;
}
main {
display: flex;
flex-direction: column;
align-items: center;
}
.stage {
width: 800px;
}
.round-results {
text-align: center;
padding: 10px 0;
}
.versus-display {
display: flex;
justify-content: space-around;
}
.round-info {
text-align: center;
padding: 10px 0;
}
.selection {
background-color: white;
width: 200px;
height: 200px;
border: 10px solid black;
border-radius: 50%;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
text-align: center;
padding-top: 30px;
}
.player-selection {
background-color: #00239cff;
}
.computer-selection {
background-color: #e10600ff;
}
.selection img {
width: 124px;
}
.player-optns-container {
margin-top: 50px;
display: flex;
width: 500px;
justify-content: space-evenly;
}
.optn {
width: 100px;
height: 100px;
border: 5px solid black;
border-radius: 50%;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
text-align: center;
padding-top: 15px;
cursor: pointer;
}
.optn img {
width: 62px;
}
.optn:hover {
background-color: #7f917d;
}