saudade/style/index.css

131 lines
1.7 KiB
CSS
Raw Normal View History

2023-06-09 14:05:18 -07:00
@font-face {
2023-12-10 20:37:03 -08:00
font-family: "CascadiaCode";
src: url("fonts/CascadiaCode.woff2");
2023-06-09 14:05:18 -07:00
}
@font-face {
2023-12-10 20:37:03 -08:00
font-family: "CascadiaCode";
src: url("fonts/CascadiaCodeItalic.woff2");
font-style: italic;
2023-06-09 14:05:18 -07:00
}
html {
2023-12-10 20:37:03 -08:00
height: 100%;
width: 100%;
2023-06-09 14:05:18 -07:00
}
* {
2023-12-10 20:37:03 -08:00
box-sizing: border-box;
2023-06-09 14:05:18 -07:00
}
body {
2023-12-10 20:37:03 -08:00
height: 95%;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
2023-06-09 14:05:18 -07:00
2023-12-10 20:37:03 -08:00
text-align: center;
font-family: "CascadiaCode", sans-serif;
letter-spacing: 1px;
font-size: 13px;
background-image: url(bg.gif);
2023-06-09 14:05:18 -07:00
}
#site {
2023-12-10 20:37:03 -08:00
border: 1px solid #000;
width: 600px;
height: 600px;
background-color: #faefe4;
2023-06-09 14:05:18 -07:00
}
#header {
2023-12-10 20:37:03 -08:00
padding: 10px;
border-bottom: 2px dotted #000;
2023-06-09 14:05:18 -07:00
}
#header h1 {
2023-12-10 20:37:03 -08:00
font-family: "Playfair Display", serif;
text-transform: lowercase;
font-size: 40px;
font-weight: normal;
font-style: italic;
2023-06-09 14:05:18 -07:00
2023-12-10 20:37:03 -08:00
display: table;
width: 70%;
margin: 0 auto;
text-align: left;
padding: 5px;
2023-06-09 14:05:18 -07:00
}
#header h2 {
2023-12-10 20:37:03 -08:00
font-weight: normal;
font-size: 13px;
2023-06-09 14:05:18 -07:00
2023-12-10 20:37:03 -08:00
display: table;
width: 70%;
margin: 0 auto;
text-align: right;
padding: 5px;
2023-06-09 14:05:18 -07:00
}
#nav {
2023-12-10 20:37:03 -08:00
padding: 10px;
border-bottom: 2px dotted #000;
2023-06-09 14:05:18 -07:00
}
#content {
2023-12-10 20:37:03 -08:00
padding: 10px;
overflow: auto;
height: 74%;
2023-06-09 14:05:18 -07:00
}
blockquote {
2023-12-10 20:37:03 -08:00
width: 70%;
border-left: 3px solid #808080;
padding-left: 10px;
margin: 20px auto 30px;
text-align: left;
2023-06-09 14:05:18 -07:00
}
p {
2023-12-10 20:37:03 -08:00
margin: 10px;
2023-06-09 14:05:18 -07:00
}
h3 {
2023-12-10 20:37:03 -08:00
text-decoration: underline;
font-style: italic;
font-weight: normal;
2023-06-09 14:05:18 -07:00
}
ol {
2023-12-10 20:37:03 -08:00
text-align: left;
2023-06-09 14:05:18 -07:00
}
ol li {
2023-12-10 20:37:03 -08:00
margin-bottom: 10px;
2023-06-09 14:05:18 -07:00
}
#heart {
2023-12-10 20:37:03 -08:00
display: table;
margin: 0 auto;
padding: 3px 7px;
border: 1px solid #000;
font-size: 16px;
font-family: sans-serif;
2023-06-09 14:05:18 -07:00
}
2023-12-10 20:37:03 -08:00
a {
color: #4db3da;
}
2023-06-09 14:05:18 -07:00
2023-12-10 20:37:03 -08:00
a:hover,
a:visited {
color: #268db5;
}
2023-06-09 14:05:18 -07:00
2023-12-10 20:37:03 -08:00
a:hover {
text-decoration: underline;
text-decoration-style: wavy;
}