48 lines
647 B
SCSS
Vendored
48 lines
647 B
SCSS
Vendored
// import.scss
|
|
|
|
body {
|
|
max-width: 25em;
|
|
margin: 0 auto;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
#topheader {
|
|
text-align: center;
|
|
}
|
|
|
|
.h-entry {
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
.note {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.note-metadata {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
font-size: 0.75em;
|
|
}
|
|
|
|
.social-links {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.social-links svg {
|
|
padding-left: 3px;
|
|
}
|
|
|
|
.mini-h-card img {
|
|
display: inline-block;
|
|
height: 1rem;
|
|
}
|
|
|
|
body > .h-card {
|
|
margin-top: 5px;
|
|
border-top: 1px solid grey;
|
|
}
|