kindrobot.ca/static/style.css

53 lines
641 B
CSS
Raw Normal View History

2022-05-16 23:55:08 +00:00
body {
background-color: DarkSlateGray;
color: Gainsboro;
font-family: courier;
2022-05-18 02:21:33 +00:00
max-width: 700px;
2022-05-16 23:55:08 +00:00
margin-left: 100px;
}
a {
color: LightGray;
}
2022-05-18 02:21:33 +00:00
img {
max-width: 100%;
}
li {
margin-bottom: .5em;
}
2022-05-16 23:55:08 +00:00
#title {
display: inline;
}
span.subtitle {
font-style: italic;
}
2022-05-18 02:21:33 +00:00
ul.homepage-posts {
padding-left: 1em;;
}
ul.homepage-posts .post {
display: flex;
justify-content: space-between;
margin-bottom: 1em;
}
ul.homepage-posts .post a {
width: 75%;
}
ul.homepage-posts .post .date{
width: 20%;
text-align: right;
2022-12-30 02:58:32 +00:00
}
blockquote {
margin-left: 1em;
padding-left: 1em;
border-left: solid grey 3px;
}
2023-01-30 15:30:19 +00:00
pre {
overflow-x: auto;
}