-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpredictions.css
More file actions
90 lines (79 loc) · 1.59 KB
/
predictions.css
File metadata and controls
90 lines (79 loc) · 1.59 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
84
85
86
87
88
89
90
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
nav {
width: 100%;
background-color: #333;
padding: 1rem 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
text-decoration: none;
color: #fff;
font-size: 18px;
padding: 8px 16px;
transition: background-color 0.3s, color 0.3s;
}
nav ul li a:hover {
background-color: #575757;
border-radius: 4px;
}
header {
margin-top: 20px;
padding: 20px;
width: 80%;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
header h1 {
margin: 0;
font-size: 2em;
color: #333;
}
#fixtures-container {
margin-top: 20px;
width: 80%;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
}
#fixtures-list {
max-height: 300px;
overflow-y: auto;
margin-top: 20px;
padding: 0;
list-style-type: none;
}
.fixture {
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 5px;
margin-bottom: 10px;
padding: 10px;
text-align: left;
display: flex;
justify-content: space-between;
}
.hidden {
display: none;
}