-
Notifications
You must be signed in to change notification settings - Fork 0
/
sto_Pap_Sci.css
63 lines (62 loc) · 1.1 KB
/
sto_Pap_Sci.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
*{
padding:0;
margin:0;
text-align: center;
}
h1{
justify-content:center;
text-align: center;
height:4rem;
background-color: #c1d37f;
color:#664e4c;
font-weight:800;
line-height:2rem;
}
.boxes{
display:flex;
flex-wrap: wrap;
gap:3rem;
justify-content:center;
text-align: center;
padding:5rem;
}
.buttons{
height:10rem;
width:10rem;
border-radius:50%;
border:4px solid #664e4c;
background-size:contain;
background-repeat: no-repeat;
background-position:center;
}
.buttons:hover{
cursor:pointer;
border:10px solid black;
}
.rock{
background-image: url(rock.jpeg);
}
.paper{
background-image: url(paper.jpeg);
}
.scissor{
background-image: url(scissor.jpeg);
}
.msgbox{
margin-top:5rem;
}
#msg{
font-size: 3rem;
background-color: #664e4c;
color:#c1d37f;
display: inline;
padding:1rem;
border-radius:1rem;
}
.scoreboard{
display: flex;
justify-content: center;
align-items: center;
font-size:2rem;
gap:6rem;
}