generated from nathanwoodburn/python-webserver-template
All checks were successful
Build Docker / BuildImage (push) Successful in 2m15s
100 lines
1.7 KiB
CSS
100 lines
1.7 KiB
CSS
body {
|
|
background-color: #000000;
|
|
color: #ffffff;
|
|
}
|
|
h1 {
|
|
font-size: 50px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.centre {
|
|
margin-top: 6%;
|
|
text-align: center;
|
|
}
|
|
|
|
.spacer {
|
|
height: 40px;
|
|
}
|
|
|
|
/* 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.5);
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 12px rgba(0,0,0,0.25);
|
|
text-align: center;
|
|
}
|
|
|
|
.mike-section h2 {
|
|
color: #f0f0f0;
|
|
margin-top: 0;
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
.mike-section p {
|
|
line-height: 1.6;
|
|
margin-bottom: 15px;
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
.spotify-logo {
|
|
width: 90%;
|
|
object-fit: cover;
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 12px rgba(0,0,0,0.18);
|
|
background: #222;
|
|
border: 2px solid #444;
|
|
}
|
|
|
|
#current-track-section {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#current-track {
|
|
font-size: 1.2em;
|
|
color: #fff;
|
|
margin-top: 8px;
|
|
margin-bottom: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
#logs-section {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
#server-logs {
|
|
font-family: monospace;
|
|
font-size: 14px;
|
|
background: #222;
|
|
color: #eee;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
max-height: 400px;
|
|
overflow: auto;
|
|
text-align: left;
|
|
box-shadow: 0 1px 6px rgba(0,0,0,0.12);
|
|
}
|
|
|
|
/* Button improvements */
|
|
.button {
|
|
display: inline-block;
|
|
padding: 12px 28px;
|
|
background-color: #1db954;
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
transition: background 0.2s, color 0.2s;
|
|
border: none;
|
|
font-size: 1.1em;
|
|
font-weight: 600;
|
|
box-shadow: 0 1px 6px rgba(0,0,0,0.10);
|
|
margin-top: 18px;
|
|
}
|
|
.button:hover {
|
|
background-color: #14833b;
|
|
color: #fff;
|
|
} |