profile-site/Styles/thoughts.css
2022-12-01 22:17:31 +00:00

50 lines
No EOL
757 B
CSS

body {
background-color: #FEFDFA;
}
.home {
margin: 1.8rem 2rem 0 0;
float: right;
color: #888;
text-decoration: none;
font-weight: 700;
font-size: 1.5rem;
font-family: monospace;
}
.content {
font-family: "Ubuntu Mono", monospace;
transition: .2s;
}
.article {
margin: 2rem auto 4rem auto;
padding: 0 2rem;
max-width: 700px;
}
.article h2 {
color: #888;
}
.article p {
margin-bottom: .4rem;
text-indent: 1rem;
line-height: 1.3rem;
font-size: 1.1rem;
font-family: serif;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #232326;
color: #ddd;
}
}
@media only screen and (min-width: 1200px) {
.content {
padding: 0 6rem;
line-height: 1.7rem;
}
}