-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
82 lines (69 loc) · 1.27 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
text-align: center;
background-image: url("https://s3.ap-south-1.amazonaws.com/kalvi-education.github.io/front-end-web-development/superover-bg.png");
background-size: cover;
font-family: "Poppins", sans-serif;
color: white;
}
#logo {
width: 10vw;
margin-top: 5vh;
}
h1 {
font-size: 90px;
font-weight: 600;
}
section {
margin: 10vh auto;
}
#buttons {
width: 50%;
}
.ball {
display: inline-block;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: white;
margin: 5px;
color: black;
line-height: 30px;
font-weight: bold;
font-size: 2em;
text-align: center;
padding: 10px;
}
.scoreboard {
font-size: 3em;
font-weight: bold;
}
.score {
padding: 30px;
height: auto;
border-radius: 20px;
margin: 0 50px;
}
.button {
width: 100px;
font-size: 1.5em;
cursor: pointer;
margin: 0 30px;
}
#team1 {
display: inline-block;
background-color: #005fa2;
}
#team2 {
display: inline-block;
background-color: #1fa83d;
}
#team1-superover,
#team2-superover {
margin: 20px;
}