Soc/app/assets/stylesheets/blog_posts.css

45 lines
615 B
CSS
Raw Normal View History

2024-01-06 10:29:41 +00:00
form#blog_post_form, form#learning_goal_form {
2023-10-05 18:46:09 +00:00
display: flex;
flex-direction: column;
max-width: 55em;
> h2 {
width: 100%;
}
> trix-toolbar {
max-width: 95%;
}
> trix-editor {
width: 95%;
> ul {
list-style-type: disc;
}
}
input[type=text] {
width: 95%;
}
> input[type=submit] {
width: 95%;
}
}
.blog_post {
margin: 1em auto;
padding: .5em;
background-color: var(--inset-background-color);
border: 1px solid var(--border-color);
> .created_at {
text-align: right;
font-size: .8em;
}
}
2023-10-19 14:21:34 +00:00
ul#blog_posts {
list-style-type: none;
}