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;
|
|
|
|
}
|
|
|
|
|
2023-02-04 13:40:57 -05:00
|
|
|
.card-tags {
|
|
|
|
display: flex;
|
|
|
|
gap: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-tags .tag {
|
|
|
|
background-color: var(--meta-bg);
|
|
|
|
color: var(--tag-text-color);
|
|
|
|
padding: 0.5rem;
|
|
|
|
border-radius: 5px;
|
|
|
|
font-size: 0.8rem;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2023-02-13 18:33:01 +01:00
|
|
|
pre code {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2023-02-04 13:18:40 -05:00
|
|
|
.post-divider {
|
2022-12-27 22:50:38 -05:00
|
|
|
margin-top: 3rem;
|
|
|
|
margin-bottom: 3rem;
|
2022-12-28 22:55:30 -05:00
|
|
|
}
|
|
|
|
|
2022-12-27 23:00:54 -05:00
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2023-02-04 13:18:40 -05:00
|
|
|
.answer {
|
|
|
|
padding-top: 2rem;
|
|
|
|
padding-bottom: 2rem;
|
|
|
|
border-bottom: 1px solid var(--muted-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.answer:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
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);
|
2023-02-14 20:12:49 -05:00
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2023-02-14 20:16:55 -05:00
|
|
|
align-items: center;
|
2023-02-14 20:12:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.answer-meta p {
|
|
|
|
margin: 0;
|
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:54:13 -05:00
|
|
|
.s-notice {
|
|
|
|
background-color: var(--meta-bg);
|
|
|
|
padding: 1rem;
|
|
|
|
border-radius: 5px;
|
|
|
|
color: var(--text-color);
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
2023-03-02 19:59:45 +01:00
|
|
|
.s-notice .d-flex {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.s-notice .mr8 {
|
|
|
|
margin-right: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.s-notice svg {
|
|
|
|
height: 1rem;
|
|
|
|
}
|
|
|
|
|
2023-02-04 12:58:50 -05:00
|
|
|
.answers-header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.answers-header .sorting form {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-02-04 13:40:57 -05:00
|
|
|
gap: 0.5rem;
|
2023-02-04 12:58:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.answers-header select {
|
|
|
|
border: 0;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 0.5rem;
|
|
|
|
background-color: var(--meta-bg);
|
|
|
|
color: var(--text-color);
|
|
|
|
height: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.answers-header button {
|
|
|
|
width: 2rem;
|
|
|
|
border: 0;
|
|
|
|
height: 2rem;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: var(--meta-bg);
|
|
|
|
color: var(--text-color);
|
|
|
|
font-size: 1.5rem;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|