tilde.town/style.css

104 lines
1.5 KiB
CSS
Raw Normal View History

2019-03-11 05:02:48 +00:00
html,
body,
#cover,
#cover *
{
2019-03-11 04:20:16 +00:00
margin: 0;
padding: 0;
}
2019-03-12 05:34:27 +00:00
html { font: 16px/22px "Courier Prime", "Courier New", monospace; }
body { background: PapayaWhip; }
2019-03-11 04:20:16 +00:00
2019-03-11 05:02:48 +00:00
#cover h1 {
position: absolute;
right: 1em;
bottom: 1em;
font-size: 3em;
2019-03-11 04:20:16 +00:00
}
2019-03-12 05:34:27 +00:00
#cover {
position: fixed;
color: white;
height: 100vh;
width: 100vw;
margin: 0;
padding: 0;
background: no-repeat center/100% url("flamingobathroom.jpg");
}
2019-03-11 04:20:16 +00:00
2019-03-11 05:02:48 +00:00
#moon {
position: absolute;
font-size: 1em;
text-decoration: none;
2019-03-11 04:20:16 +00:00
}
2019-03-12 05:34:27 +00:00
#everything {
2019-03-11 05:02:48 +00:00
height: 100vh;
position: relative;
2019-03-11 04:20:16 +00:00
}
2019-03-12 05:34:27 +00:00
#below-the-fold {
position: relative;
top: 100vh;
}
2019-03-16 01:28:06 +00:00
#mood {
float: right;
width: 200px;
margin: 8px;
}
2019-03-12 05:34:27 +00:00
main { }
main section {
max-width: 50rem;
width: 90%;
margin: 0 auto;
2019-03-11 05:02:48 +00:00
background: papayawhip;
2019-03-12 05:34:27 +00:00
padding: 1rem;
border-radius: 5px;
margin-bottom: 1rem;
}
#house pre {
background-color: #efd5ff;
padding-right: 1rem;
}
#titleblock {
text-align: right;
width: 100%;
2019-03-11 04:20:16 +00:00
}
2019-03-12 05:34:27 +00:00
footer {
max-width: 50rem;
width: 90%;
margin: 0 auto;
padding: 0 1rem;
background-color: #d5efff;
text-align: right;
border-radius: 5px 5px 0 0;
2019-03-16 01:28:06 +00:00
display: flex;
justify-content: space-between;
2019-03-12 05:34:27 +00:00
}
a {
color: inherit;
}
a:link {}
a:active {
text-transform: uppercase;
}
a:hover {
text-transform: uppercase;
background-color: #d5d5ff;
}
a:visited {}
2019-03-16 01:28:06 +00:00
dt {
border-bottom: 1px solid black;
line-height: 1.0;
margin-top: 1em;
}
dd {
border-left: 1px solid black;
padding-left: 0.5em;
}