-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (74 loc) · 1.5 KB
/
style.css
File metadata and controls
83 lines (74 loc) · 1.5 KB
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
83
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
align-items: center;
gap: 60px;
}
.container{
display: flex;
gap: 50px;
}
.container .team{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 300px;
padding: 30px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
border-radius: 20px;
}
.container .team .score-view{
height: 100px;
display: flex;
justify-content: center;
align-items: center;
width: 100px;
background-color: #12355b;
border-radius: 50%;
}
.container .team .score-view span{
color: white;
font-size: 30px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.title{
margin-top: 20px;
font-family: Arial, Helvetica, sans-serif;
}
.container .team .score-box{
display: flex;
gap: 20px;
margin-top: 40px;
}
.container .team .score-box .score{
background-color: #12355b;
padding: 10px;
color: white;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
cursor: pointer;
border-radius: 5px;
}
#reset{
background-color: red;
height: fit-content;
width: 100px;
padding: 10px;
color: white;
font-family: Arial, Helvetica, sans-serif;
border-radius: 20px;
text-align: center;
font-weight: 600;
cursor: pointer;
}