generated from nathanwoodburn/python-webserver-template
45 lines
1.0 KiB
CSS
45 lines
1.0 KiB
CSS
:root {
|
|
--primary-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
|
|
--bg-color: #0f172a;
|
|
--text-primary: #f8fafc;
|
|
--accent-color: #8b5cf6;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-color);
|
|
background-image:
|
|
radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
|
|
radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.15) 0px, transparent 50%);
|
|
color: var(--text-primary);
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
margin: 0 0 1rem 0;
|
|
background: var(--primary-gradient);
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
color: transparent;
|
|
}
|
|
|
|
.centre {
|
|
margin: auto;
|
|
text-align: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
a {
|
|
color: var(--accent-color);
|
|
text-decoration: none;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
a:hover {
|
|
color: #a78bfa;
|
|
text-decoration: underline;
|
|
} |