-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.css
91 lines (80 loc) · 1.58 KB
/
game.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
83
84
85
86
87
88
89
90
91
/* Background Image */
.row {
background-image: url('./images/picth1.jpg');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
background-attachment: fixed;
height: 100vh;
}
/* Logo */
.logo {
width: 150px;
height: 150px;
margin-top: 50px;
}
/* Team Names */
.team-name {
color: #fff;
font-size: 2.5rem;
margin-top: 20px;
text-shadow: 2px 2px #000;
}
/* VS Section */
.vs-section {
margin-top: 50px;
padding: 30px;
background-color: rgba(0, 0, 0, 0.6);
border-radius: 20px;
box-shadow: 0 0 20px #000;
color: #fff;
font-size: 2rem;
}
/* Match Date */
.match-date {
color: #fff;
font-size: 2rem;
text-shadow: 2px 2px #000;
}
/* Match Description */
.match-desc {
color: #fff;
font-size: 1.5rem;
margin-top: 20px;
text-shadow: 2px 2px #000;
}
/* Stadium Name */
.stadium-name {
color: #fff;
font-size: 1.2rem;
margin-top: 20px;
text-shadow: 2px 2px #000;
}
/* Capacity */
.capacity {
color: #fff;
font-size: 1.2rem;
margin-top: 20px;
text-shadow: 2px 2px #000;
}
/* Play Button */
.btn-play {
background-color: #fff;
color: #000;
font-size: 1.5rem;
margin-top: 20px;
padding: 10px 30px;
border-radius: 50px;
text-shadow: none;
transition: all 0.3s ease-in-out;
}
.btn-play:hover {
background-color: #000;
color: #fff;
text-decoration: none;
}
@media (max-width: 767px) {
.row {
height: 100%;
}
}