home: move styles to shared/

This commit is contained in:
Charlotte Gaskell 2025-07-28 13:15:37 +01:00
parent a43e646432
commit 4ba4d9fee8
Signed by: charlotte
GPG key ID: 8B93BA001088A340
3 changed files with 32 additions and 35 deletions

View file

@ -5,6 +5,7 @@
<head>
<title>lottepup.space</title>
<link rel="stylesheet" href="/shared/main.css" />
</head>
@ -39,38 +40,3 @@
</body>
</html>
<style>
* {
font-family: monospace;
}
html {
background-color: black;
color: #ffc0cb;
font-size: 12pt;
}
a {
color: #ffffff;
text-decoration: none;
}
a:hover {
font-style: italic;
}
a:visited {
color: #ffffff;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}
</style>

1
home/shared Symbolic link
View file

@ -0,0 +1 @@
../shared

30
shared/main.css Normal file
View file

@ -0,0 +1,30 @@
* {
font-family: monospace;
}
html {
background-color: black;
color: #ffc0cb;
font-size: 12pt;
}
a {
color: #ffffff;
text-decoration: none;
}
a:hover {
font-style: italic;
}
a:visited {
color: #ffffff;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}