Initial commit.
commit
66f851f832
@ -0,0 +1,15 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>laserlesbian.systems</title>
|
||||||
|
<link rel="stylesheet" href="./style.css" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<h1>laserlesbian.systems</h1>
|
||||||
|
|
||||||
|
<p class="notice">
|
||||||
|
Notice: This is a personal server, and the services on this domain are intended for use
|
||||||
|
by friends and family.
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@ -0,0 +1,27 @@
|
|||||||
|
:root {
|
||||||
|
/* Vague palette
|
||||||
|
Pink -- #f887ff;
|
||||||
|
Red -- #de004e;
|
||||||
|
Dark Red -- #860029;
|
||||||
|
Purple -- #6629a3;
|
||||||
|
Dark Purple -- #29132e;
|
||||||
|
*/
|
||||||
|
|
||||||
|
--background: #000000; /* black */
|
||||||
|
--primary-color: #6629a3; /* purple */
|
||||||
|
--accent-color: #de004e; /* red */
|
||||||
|
--highlight-color: #f887ff; /* pink */
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: #000;
|
||||||
|
color: var(--primary-color);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {color: var(--accent-color);}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: var(--highlight-color);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue