-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRPC.css
More file actions
130 lines (99 loc) · 1.49 KB
/
RPC.css
File metadata and controls
130 lines (99 loc) · 1.49 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
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
@import url('https://fonts.googleapis.com/css?family=Asap:400,600');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Asap;
}
header {
background-color: white;
padding: 10px;
}
header > h1{
color: black;
text-align: center;
margin: 10 auto;
}
body{
background-color: #262632;
color: white;
}
.scoreBoard {
border: solid 3px white;
text-align: center;
width: 200px;
margin: 20px auto ;
border-radius: 5px;
font-size: 38px;
padding: 20px 40px;
position: relative;
}
.badge {
background-color: red;
padding: 2px 4px;
height: 25px;
width: 60px;
font-size: 15px;
text-align: center;
top: 30px;
}
#userBadge{
left: -40px;
position: absolute;
}
#compBadge{
right: -40px;
position: absolute;
}
.result {
margin: 20px ;
padding: 20px ;
font-size: 50px;
text-align: center;
font-family: Asap;
}
.choices{
text-align: center;
}
.choice{
display: inline-block;
height: 120px;
width: 120px;
margin: 5px 15px;
border: solid 4px white;
padding: 15px;
border-radius: 50%;
transition: 300ms;
cursor: pointer;
}
.choice:hover{
border: solid 4px white;
background-color: #2f2f49;
}
img{
height: 74px;
width: 74px;
}
.message{
text-align: center;
font-size: 20px;
margin: 20px;
}
.greenGlow{
border: 4px solid #76c66d;
}
.redGlow{
border: 4px solid #b24e55;
}
.greyGlow{
border: 4px solid #7f7f7f;
}
.greenGlow:hover{
border: 4px solid #76c66d;
}
.redGlow:hover{
border: 4px solid #b24e55;
}
.greyGlow:hover{
border: 4px solid #7f7f7f;
}