substr/assets/css/layout.css

129 lines
1.7 KiB
CSS

@import url("/assets/css/fonts/merriweather.css");
body {
font-size: 18px;
font-family: "Merriweather", serif;
}
img {
max-width: 100%;
}
img.avatar {
height: 48px;
width: 48px;
border-radius: 50%;
}
.profile-page img.avatar {
height: 128px;
width: 128px;
}
h1 {
margin: 2em 0 0 0;
}
h2, h3, h4 {
margin-top: 2em;
margin-bottom: 2rem;
line-height: 1.6em;
}
p, pre, ul, ol, blockquote {
line-height: 1.6em;
margin-bottom: 1.6em;
}
a.anchor {
display: none;
}
code {
font-size: 1rem;
padding: 0.1em 0.3em;
}
pre code {
display: block;
padding: 0.6rem 1rem;
}
main {
display: block;
max-width: 728px;
margin: 12rem auto 24rem auto;
}
main header {
display: block;
margin-bottom: 3rem;
}
main header h1 {
margin-bottom: 1.6rem;
}
main header .meta {
display: flex;
column-gap: 1rem;
}
main header .meta .content {
display: flex;
flex-direction: column;
font-size: 0.875rem;
line-height: 1.6rem;
}
main header .meta .name a {
text-decoration: none;
}
main .article-list .item {
margin-bottom: 3rem;
}
main .article-list .item h3 {
margin-bottom: 1rem;
}
main article footer {
margin-top: 5rem;
}
/* Dropdown menu */
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-button {
font-family: "Merriweather", serif;
font-size: 0.875rem;
padding: 0.6rem 1rem;
border: 1px solid;
border-radius: 5px;
cursor: pointer;
}
.dropdown-content {
display: none;
position: absolute;
min-width: 160px;
border-radius: 5px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content a {
padding: 0.6rem 1rem;
text-decoration: none;
display: block;
}
.dropdown:hover .dropdown-content {
display: block;
}