main
Ashelyn Dawn 1 year ago
parent 1d2a200c27
commit 2e186832ec

@ -0,0 +1,30 @@
<!doctype html>
<html>
<head>
<title>Rose's Landing Page</title>
<link rel="stylesheet" href="/style.css"/>
</head>
<body>
<main>
<h1>rose.tempest.dev</h1>
<div>
<p>
this is a sample page, demonstrating how simple it can be to
write your own stylesheets.
</p>
<p>
because this is important to me, and because i'm admittedly
a cocky asshole sometimes.
</p>
</div>
<p>
To find us elsewhere, go to <a target="_blank" href="https://tempest.dev/about">tempest.dev</a>
</p>
</main>
<footer>
<span>&copy; Ashelyn Rose</span>
<a target="_blank" href="https://tempest.dev/about-system">About System</a>
<a target="_blank" href="https://ashe.gay/">Dawn's Poetry</a>
</footer>
</body>
</html>

@ -0,0 +1,84 @@
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Quicksand:wght@300&display=swap');
:root {
--html-background: #370314;
--card-background: #553b3b;
--footer-background: #591229;
--card-width: 500px;
--card-height: 350px;
color: white;
}
html, body {
margin: 0;
padding: 0;
min-height: 100vh;
font-family: 'Quicksand', sans-serif;
font-weight: 300;
background: var(--html-background);
}
h1 {
font-family: 'Montserrat', sans-serif;
font-weight: 100;
position: relative;
margin-top: 0;
}
h1::before {
position: absolute;
bottom: -2px;
display: block;
content: ' ';
width: 100%;
height: 1px;
background: currentcolor;
opacity: .5;
}
h1::after {
display: block;
content: ' ';
width: 100%;
height: 1px;
background: currentcolor;
}
a {
color: pink;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
main {
display: flex;
flex-direction: column;
width: var(--card-width);
height: var(--card-height);
background: var(--card-background);
margin-top: calc(50vh - var(--card-height) / 2);
box-sizing: border-box;
padding: 32px;
}
main > div {
flex: 1;
}
footer {
display: block;
padding: 16px;
background: var(--footer-background);
width: calc(100% - 32px);
display:flex;
flex-direction: row;
}
footer > a {
margin-left: 32px;
}
Loading…
Cancel
Save