Files
Nathan Woodburn 50331bd7a3
All checks were successful
Build Docker / BuildImage (push) Successful in 2m7s
feat: Add initial site
2025-09-29 21:10:09 +10:00

62 lines
1.1 KiB
CSS

body {
background-color: #e300eb;
color: #ffffff;
}
h1 {
font-size: 50px;
margin: 0;
padding: 0;
}
.centre {
margin-top: 10%;
text-align: center;
}
a {
color: #ffffff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Mike section styling */
.mike-section {
margin-top: 30px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
padding: 20px;
background-color: rgba(50, 50, 50, 0.3);
border-radius: 8px;
}
.mike-section h2 {
color: #f0f0f0;
margin-top: 0;
}
.mike-section p {
line-height: 1.6;
margin-bottom: 15px;
}
/* Schedule link styling */
.schedule-link {
display: inline-block;
padding: 12px 24px;
background-color: rgba(70, 70, 70, 0.8);
border: 2px solid #888;
border-radius: 8px;
color: #ffffff;
text-decoration: none;
font-size: 18px;
font-weight: 600;
transition: all 0.3s ease;
}
.schedule-link:hover {
background-color: rgba(100, 100, 100, 0.9);
border-color: #aaa;
text-decoration: none;
transform: translateY(-2px);
}