83 lines
1.1 KiB
CSS
83 lines
1.1 KiB
CSS
:root {
|
|
--code-bg: #36383d;
|
|
}
|
|
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
|
|
overflow-x: hidden;
|
|
|
|
background-color: #1b1f26;
|
|
color: white;
|
|
font-family: sans-serif;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
padding-left: 5rem;
|
|
padding-right: 5rem;
|
|
padding-top: 2rem;
|
|
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.parent {
|
|
max-width: 90%;
|
|
width: fit-content;
|
|
}
|
|
|
|
code {
|
|
background-color: var(--code-bg);
|
|
padding: .15rem;
|
|
border-radius: 5px;
|
|
color: white;
|
|
}
|
|
|
|
pre {
|
|
background-color: var(--code-bg);
|
|
padding: 1rem;
|
|
border-radius: 5px;
|
|
color: white;
|
|
overflow-x: auto;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
|
|
.timestamp {
|
|
color: #b3b3b3;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
a {
|
|
color: #92adff;
|
|
}
|
|
|
|
.answer-divider {
|
|
margin-top: 3rem;
|
|
margin-bottom: 3rem;
|
|
border: 0;
|
|
height: 1px;
|
|
background-color: #42464e;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.accepted-answer {
|
|
background-color: #8cffc0;
|
|
border-radius: 5px;
|
|
padding: 1rem;
|
|
color: black;
|
|
margin-bottom: 1rem;
|
|
/* width: fit-content; */
|
|
} |