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

85 lines
943 B
CSS
Raw Permalink 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%;
}
.side-nav {
text-align: right;
}
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;
}
.blog-article {
2024-08-10 09:41:01 +02:00
padding-top: 2rem;
2020-10-26 12:19:44 +01:00
display: flex;
}
.hidden-link {
text-decoration: none;
color: black;
}
2020-10-26 12:19:44 +01:00
.post-link {
text-decoration: none;
color: black;
2020-10-26 12:19:44 +01:00
}
.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;
margin-left: 2rem;
}
.submit-box {
display: flex;
justify-content: space-between;
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
}