-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (70 loc) · 1.1 KB
/
style.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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
header{
background-color: rgb(185, 132, 235);
padding: 20px;
}
header h1{
text-align: center;
}
.score{
border: 3px solid rgb(11, 11, 11);
width: 300px;
margin: 20px auto;
font-size: 46px;
border-radius: 5px;
text-align: center;
padding: 15px 20px;
position: relative;
}
.badge{
background-color: bisque;
font-size: 24px;
padding:2px 14px ;
}
#user{
position: absolute;
top:25px;
left:-30px;
}
#computer{
position: absolute;
top:25px;
right:-60px;
}
.result{
font-size: 40px;
}
.result p{
text-align: center;
font-weight: bold;
}
.choices{
text-align: center;
margin:50px 0;
}
.choice{
display: inline-block;
border:4px solid black;
padding:30px;
border-radius: 140px;
margin: 0 15px;
transition: all 0.3s ease;
}
img{
height: 225px;
width:225px;
}
.choice:hover{
cursor: pointer;
background-color: rgb(148, 242, 153);
}
#action-message{
text-align: center;
font-weight: bold;
font-size: 55px;
margin: 20px;
}