-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (48 loc) · 902 Bytes
/
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
.container{
height: 500px;
width: 800px;
margin: auto;
background-color: peachpuff;
display: flex;
flex-wrap: wrap;
justify-content: center;
border-radius: 8px;
}
.buttons{
flex-basis: 100%;
display: flex;
justify-content: space-around;
align-items: flex-start;
}
.results {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
body {
text-align: center;
font-family: monospace;
font-size: large;
padding: 14px;
}
.contenders{
flex-basis: 100%;
display: flex;
justify-content: space-around;
gap: 14px;
}
button{
padding: 24px;
border: none;
background-color: coral;
color: white;
font-family: monospace;
font-size: larger;
width: 150px;
border-radius: 8px;
margin-top: 12px;
transition-duration: 0.4s;
}
button:hover{
background-color:indianred;
}