crablog/site/content/static/css/blog.css

69 lines
735 B
CSS
Raw Normal View History

2020-10-26 12:19:44 +01:00
* {
margin: 0;
padding: 0;
}
html {
font-family: sans-serif;
padding: 20px;
width: 60%;
padding-left: 20%;
}
2024-08-10 09:41:01 +02:00
.social-icon {
height: 1rem;
width: 1rem;
}
.post-img {
2020-11-02 16:13:02 +01:00
width: 50%;
padding: 20px 0px 20px 0px;
}
2020-10-26 12:19:44 +01:00
article {
2024-08-10 09:41:01 +02:00
padding-top: 2rem;
2020-10-26 12:19:44 +01:00
display: flex;
}
.post-link {
padding-right: 20px;
}
.post-title {
font-weight: 400;
}
.post-publish-date {
2024-08-10 09:41:01 +02:00
font-size: 0.7rem;
2020-10-26 12:19:44 +01:00
}
.post-body {
2024-08-10 09:41:01 +02:00
padding-top: 1rem;
2020-10-26 12:19:44 +01:00
}
#submit-form {
2024-08-10 09:41:01 +02:00
padding-top: 2rem;
2020-10-26 12:19:44 +01:00
}
2024-08-10 09:41:01 +02:00
#submit-body,
#submit-title {
2020-10-26 12:19:44 +01:00
width: 100%;
2024-08-10 09:41:01 +02:00
margin-bottom: 2rem;
2020-10-26 12:19:44 +01:00
resize: none;
}
#submit-body {
height: 500px;
}
#submit-form {
display: block
}
@media (max-width:1080px) {
html {
padding: 20px;
width: 90%;
padding-left: 5%;
}
2024-08-10 09:41:01 +02:00
}