mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-04-06 02:42:41 +00:00
150 lines
2.6 KiB
CSS
150 lines
2.6 KiB
CSS
/**
|
|
* Author: Vera Konigin
|
|
* Site: https://groundedwren.neocities.org
|
|
* Contact: vera@groundedwren.com
|
|
*
|
|
* File Description: Styles for the guestbook control
|
|
* CSS variables come from https://groundedwren.neocities.org/styles/gwBoilerPlatePersonalization.css
|
|
*/
|
|
:root {
|
|
--icon-color: var(--clr-body-txt);
|
|
}
|
|
|
|
.comment-form {
|
|
display: grid;
|
|
border: 0.1rem solid var(--clr-body-txt);
|
|
padding: 1em;
|
|
margin: 2em 0;
|
|
}
|
|
|
|
.comment-form-title {
|
|
text-align: center;
|
|
}
|
|
|
|
.comment-form,
|
|
.input-horizontal-wrapper {
|
|
gap: 0.7em;
|
|
}
|
|
|
|
.input-horizontal-wrapper {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(100%/1, max(16rem, 100%/3)), 1fr));
|
|
}
|
|
|
|
.input-vertical,
|
|
.comment-box-container {
|
|
display: grid;
|
|
gap: 0.2em;
|
|
}
|
|
|
|
.input-vertical input:focus {
|
|
outline: 0.15em solid var(--clr-link);
|
|
}
|
|
|
|
.comment-box-container textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
.inline-banner {
|
|
padding: 0.4em;
|
|
word-break: break-word;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.5em;
|
|
background-color: var(--clr-quote-bg);
|
|
}
|
|
|
|
.inline-banner.warning {
|
|
background-color: #9e0f00;
|
|
}
|
|
|
|
.form-footer,
|
|
.comment-footer {
|
|
display: flex;
|
|
gap: 0.5em;
|
|
}
|
|
|
|
.form-footer {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.form-footer input,
|
|
.comment-footer button,
|
|
.show-comment {
|
|
cursor: pointer;
|
|
border: none;
|
|
background: var(--clr-link-btn-bg);
|
|
color: var(--clr-link-btn-txt);
|
|
padding: 0.3em 0.6em;
|
|
border-radius: 0.2em;
|
|
}
|
|
|
|
gw-comment-card:not(.collapsed) .show-comment {
|
|
display: none;
|
|
}
|
|
gw-comment-card.collapsed .comment-article > *:not(.comment-header) {
|
|
display: none !important;
|
|
}
|
|
gw-comment-card.collapsed .show-comment {
|
|
display: block;
|
|
}
|
|
|
|
gw-comment-card.collapsed .comment-header-right time {
|
|
display: none;
|
|
}
|
|
|
|
.comments-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
max-width: 100%;
|
|
gap: 0.4em;
|
|
}
|
|
|
|
.comment-article {
|
|
padding: 0.3em 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.comment-article blockquote {
|
|
max-width: unset !important;
|
|
overflow-wrap: break-word;
|
|
margin: 0.5em 0;
|
|
}
|
|
|
|
.comment-article > button {
|
|
max-width: fit-content;
|
|
}
|
|
|
|
.comment-header {
|
|
display: grid;
|
|
grid-template-columns: 0fr max-content 1fr;
|
|
gap: 0.4em;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.comment-article .comment-article {
|
|
margin-left: 2em;
|
|
margin-top: 0.8em;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.comment-id, .comment-header-right > time {
|
|
font-size: 0.85em;
|
|
font-style: italic;
|
|
word-break: keep-all;
|
|
}
|
|
|
|
.comment-header-right {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.commenter-name {
|
|
font-size: 1.1em;
|
|
font-weight: bold;
|
|
}
|