2022-12-27 22:31:07 -05:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
2022-12-28 11:49:14 -05:00
|
|
|
background-color: var(--main-bg);
|
|
|
|
color: var(--text-color);
|
2022-12-27 22:31:07 -05:00
|
|
|
font-family: sans-serif;
|
2022-12-28 22:48:02 -05:00
|
|
|
|
2022-12-27 22:31:07 -05:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
padding-left: 5rem;
|
|
|
|
padding-right: 5rem;
|
|
|
|
padding-top: 2rem;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2022-12-27 22:50:38 -05:00
|
|
|
.parent {
|
|
|
|
max-width: 90%;
|
|
|
|
width: fit-content;
|
|
|
|
}
|
|
|
|
|
2022-12-28 11:56:17 -05:00
|
|
|
.header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
2022-12-27 22:31:07 -05:00
|
|
|
code {
|
|
|
|
background-color: var(--code-bg);
|
2022-12-28 22:48:02 -05:00
|
|
|
padding: 0.15rem;
|
2022-12-27 22:31:07 -05:00
|
|
|
border-radius: 5px;
|
2022-12-28 18:52:38 -05:00
|
|
|
color: white;
|
2022-12-27 22:31:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
background-color: var(--code-bg);
|
|
|
|
padding: 1rem;
|
|
|
|
border-radius: 5px;
|
2022-12-28 11:49:14 -05:00
|
|
|
color: var(--text-color);
|
2022-12-27 22:31:07 -05:00
|
|
|
overflow-x: auto;
|
2022-12-27 22:46:31 -05:00
|
|
|
line-height: 1.35;
|
2022-12-27 22:31:07 -05:00
|
|
|
}
|
2022-12-27 22:46:31 -05:00
|
|
|
|
|
|
|
.timestamp {
|
2022-12-28 11:49:14 -05:00
|
|
|
color: var(--muted-text-color);
|
2022-12-27 22:46:31 -05:00
|
|
|
font-size: 0.8rem;
|
|
|
|
}
|
|
|
|
|
2022-12-27 22:50:38 -05:00
|
|
|
.answer-divider {
|
|
|
|
margin-top: 3rem;
|
|
|
|
margin-bottom: 3rem;
|
|
|
|
border: 0;
|
|
|
|
height: 1px;
|
2022-12-28 11:49:14 -05:00
|
|
|
background-color: var(--divider-color);
|
2022-12-27 23:00:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-12-27 23:23:19 -05:00
|
|
|
.answer-meta {
|
2022-12-27 23:00:54 -05:00
|
|
|
border-radius: 5px;
|
|
|
|
padding: 1rem;
|
|
|
|
color: black;
|
|
|
|
margin-bottom: 1rem;
|
2022-12-28 11:49:14 -05:00
|
|
|
background-color: var(--meta-bg);
|
|
|
|
color: var(--text-color);
|
2022-12-27 23:23:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.answer-meta.accepted {
|
|
|
|
background-color: #8cffc0 !important;
|
|
|
|
color: black !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.answer-author-parent {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.answer-author {
|
|
|
|
width: fit-content;
|
2022-12-28 11:49:14 -05:00
|
|
|
background-color: var(--meta-bg);
|
2022-12-28 22:48:02 -05:00
|
|
|
padding: 0.5rem;
|
2022-12-27 23:23:19 -05:00
|
|
|
border-radius: 5px;
|
|
|
|
text-align: right;
|
2022-12-28 22:48:02 -05:00
|
|
|
font-size: 0.8rem;
|
2022-12-27 23:39:34 -05:00
|
|
|
}
|
|
|
|
|
2022-12-28 11:33:26 -05:00
|
|
|
.logo-link {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
width: 2rem;
|
|
|
|
height: 2rem;
|
|
|
|
}
|
|
|
|
|
2022-12-28 22:48:02 -05:00
|
|
|
.comments-parent {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 1rem;
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment-parent {
|
|
|
|
cursor: text;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment-body {
|
|
|
|
font-size: 0.95rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment-author {
|
|
|
|
color: var(--muted-text-color);
|
|
|
|
font-size: 0.8rem;
|
|
|
|
}
|
|
|
|
|
2022-12-27 23:39:34 -05:00
|
|
|
@media only screen and (max-width: 800px) {
|
|
|
|
body {
|
|
|
|
padding-left: 1rem;
|
|
|
|
padding-right: 1rem;
|
|
|
|
}
|
2022-12-28 22:48:02 -05:00
|
|
|
}
|