add navigation and fetching of sports

This commit is contained in:
Thomas Peetz
2025-09-12 23:51:38 +02:00
parent 9acdff19e1
commit 8b9313da93
85 changed files with 646 additions and 136 deletions
+68
View File
@@ -1 +1,69 @@
/* You can add global styles to this file, and also import other style files */
* {
box-sizing: border-box;
}
body {
font-family: Arial;
padding: 0px;
background: lightgrey;
}
/* Style the top navigation bar */
.topnav {
overflow: hidden;
background-color: darkgrey;
}
/* Style the topnav links */
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Change color on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
.subnav {
overflow: hidden;
background-color: grey;
}
.subnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
a {
display: inline-block;
color: white;
background-color: dodgerblue;
text-align: center;
padding: 10px;
text-decoration: none;
border-radius: 10px;
margin-left: 20px;
}
/* Change the color of links on mouse-over */
a:hover {
background-color: royalblue;
color: white;
}
/* Add a color to the active/current link */
a.active {
background-color: royalblue;
color: white;
}