WhisperMaPhone/thoughts/static/thoughts/post.css

37 lines
692 B
CSS

textarea.thought {
width: calc(100% - 60px);
}
#post-button {
border-radius: 0;
background: none;
outline: none;
border: none;
padding: 0;
font-size: 32px;
color: var(--text-color);
cursor: pointer;
font-family: Georgia, Libre Baskerville, serif;
font-weight: inherit;
}
.media-wrapper {
padding: 8px;
margin: 20px 0;
border-left: 2px solid var(--accent-color);
}
.media-wrapper [name="media"] {
/* Tries to make the media upload button have a cursor. Doesn't work but I blame WebKit */
cursor: pointer;
}
.media-wrapper textarea {
margin-top: 20px;
}
.error {
font-style: italic;
color: var(--accent-color);
}