-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
101 lines (88 loc) · 1.69 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
body {
font-family: 'Arial', sans-serif;
text-align: center;
background: linear-gradient(45deg, #1e3c72, #2a5298);
color: #fff;
margin: 0;
padding: 20px;
}
header {
background-color: #000;
padding: 20px;
border-radius: 10px;
margin-bottom: 30px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 3em;
margin: 0;
color: #f39c12;
}
p {
font-size: 1.2em;
margin: 5px 0 15px;
color: #bdc3c7;
}
.betting {
display: flex;
flex-direction: column;
align-items: center;
}
h2 {
font-size: 2.5em;
margin-bottom: 20px;
color: #ecf0f1;
text-shadow: 2px 2px #2980b9;
}
.match {
background-color: #34495e;
border-radius: 15px;
padding: 20px;
margin: 15px 0;
width: 80%;
max-width: 600px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
transition: transform 0.2s;
}
.match:hover {
transform: scale(1.05);
}
label {
font-size: 1.2em;
margin-right: 10px;
}
input {
width: 60px;
padding: 10px;
border-radius: 5px;
border: none;
margin-right: 10px;
}
button {
background-color: #e74c3c;
border: none;
padding: 10px 20px;
color: #fff;
border-radius: 5px;
cursor: pointer;
font-size: 1.2em;
}
button:hover {
background-color: #c0392b;
}
.bet-result {
margin-top: 10px;
padding: 10px;
background-color: #2c3e50;
border-radius: 5px;
font-size: 1.1em;
color: #ecf0f1;
}
footer {
margin-top: 30px;
padding: 10px;
background-color: #000;
border-radius: 10px;
color: #bdc3c7;
font-size: 1em;
}