-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
111 lines (110 loc) · 1.98 KB
/
index.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
* {
margin: 0px;
padding: 0px;
}
/* container styling */
.container {
/* border: 5px solid red; */
height: 90vh;
display: flex;
background: url("2.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
flex-direction: column;
justify-content: space-between;
margin: 30px 40px;
}
.playerProfile {
/* border: 5px solid green; */
display: flex;
justify-content: space-between;
padding: 20px 20px;
margin: 10px 20px;
}
.btn {
/* border: 4px solid blue; */
display: flex;
justify-content: space-between;
margin: 10px 20px;
}
/* desing the inner elements */
#player1Score {
font-size: 40px;
font-weight: bold;
color: white;
}
#player2Score {
font-size: 40px;
font-weight: bold;
color: white;
}
.star {
font-size: 30px;
font-weight: bold;
color: white;
}
h1 {
color: white;
font-weight: bold;
}
/* buttons styling */
#fire1 {
padding: 20px 40px;
text-align: center;
font-size: 30px;
font-weight: bolder;
background-color: black;
color: white;
box-shadow: 1px 5px 22px cyan;
cursor: pointer;
}
#fire2 {
padding: 20px 40px;
text-align: center;
font-size: 30px;
font-weight: bolder;
background-color: black;
color: white;
box-shadow: 1px 5px 22px cyan;
cursor: pointer;
}
#newGame {
padding: 20px 40px;
text-align: center;
font-size: 30px;
font-weight: bolder;
background-color: black;
color: white;
box-shadow: 1px 5px 22px cyan;
cursor: pointer;
}
#fire1:hover {
box-shadow: 1px 5px 22px red;
color: red;
}
#fire2:hover {
box-shadow: 1px 5px 22px red;
color: red;
}
#newGame:hover {
color: cyan;
}
.tournamentScore {
color: wheat;
font-size: 80px;
font-weight: bolder;
}
#newTournament {
padding: 20px 40px;
text-align: center;
font-size: 30px;
font-weight: bolder;
background-color: black;
color: white;
box-shadow: 1px 5px 22px cyan;
cursor: pointer;
}#newTournament:hover{
color: rgb(171, 240, 12);
box-shadow: 1px 5px 22px rgb(171, 240, 12);
}