-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
67 lines (66 loc) · 1.14 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: url('https://s3.ap-south-1.amazonaws.com/kalvi-education.github.io/front-end-web-development/superover-bg.png');
text-align: center;
font-family: 'poppins', sans-serif;
color: white;
background-size: cover;
}
#logo {
width: 200px;
margin-top: 20px;
}
section {
margin: 100px;
}
h1 {
font-size: 70px;
font-weight: 600;
}
#team1 {
display: inline-block;
background-color: darkblue;
}
#team2 {
display: inline-block;
background-color: green;
}
.ball {
display: inline-block;
border-radius: 50%;
background-color: white;
color: #000;
text-align: center;
width: 50px;
height: 50px;
margin: 5px;
font-size: 7px;
padding: 10px;
font-weight: bold;
line-height: 20px;
}
.scoreboard {
font-size: 3em;
font-weight: bold;
}
.button {
width: 100px;
cursor: pointer;
margin: 0 30px;
font-size: medium;
}
.score {
padding: 30;
height: auto;
margin:0 50px;
border-radius: 20px;
}
#team1-super,
#team2-super {
margin: 20px;
}