-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (59 loc) · 1.02 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
body{
background-color: blanchedalmond;
padding: none;
margin: 0;
}
h1{
background-color: blueviolet;
color:white;
height: 100px;
text-align: center;
border-radius: 10px;
font-size: 80px;
margin-top: 0%;
}
.choices{
display: flex;
justify-content: center;
}
.choice{
height: 100px;
width: 100px;
border-radius: 50%;
margin: 20px;
font-size: larger;
border-color: black;
}
.choice:hover{
background-color: palevioletred;
}
.score{
display: flex;
justify-content: center;
}
.user-score,.comp-score{
margin: 50px;
font: bolder;
font-size: larger;
}
#user-score,#comp-score{
display: flex;
justify-content: center;
font-size: 30px;
font-weight: bold;
}
#message{
font-size: larger;
font-weight: 700;
background-color:black;
color: aliceblue;
height: 50px;
border-radius: 10px;
text-align: center;
line-height: 50px;
padding: 10px;
}
.message-box{
display: flex;
justify-content: center;
}