1

128 lines
2.0 KiB
SCSS

body {
padding: 0;
margin: 0;
}
html {
scroll-behavior: smooth;
}
.color-space {
height: 25vh;
background-color: var(--color-purple) !important;
}
.title-container {
margin-top: 6rem;
}
.highlight {
background-color: var(--light-gray);
border-radius: 5px;
padding: 3px;
margin-bottom: 0;
}
img {
max-width: 99%;
}
iframe {
max-width: 99%;
}
.center {
text-align: center;
}
.foot-info a {
color: var(--color-dark-purple);
}
.inner-content-container>p {
text-align: justify;
}
.retention {}
.hidden {
display: none !important;
}
table {
border-collapse: collapse;
border-spacing: 0;
border: 1px solid rgba(0, 0, 0, .125);
}
th {
border: 1px solid rgba(0, 0, 0, .125);
padding: 5px;
}
td {
border: 1px solid rgba(0, 0, 0, .125);
padding: 5px;
}
.user-mention {
color: black;
font-weight: bolder;
}
.user-mention:hover {
text-decoration: none;
}
// Handles weird spacing
.highlighter-rouge,
table,
.content-container img {
margin-bottom: .6rem;
}
.inner-content-container {
p,
h2,
h3 {
a {
text-decoration: none;
position: relative;
transition: all .3s cubic-bezier(.2, 0, 0, 1);
z-index: 1;
&:after {
content: '';
display: block;
height: 2px;
position: absolute;
bottom: 0;
right: 50%;
left: 50%;
background-color: var(--color-blue);
transition: all .3s cubic-bezier(.2, 0, 0, 1);
transform-origin: bottom center;
z-index: -1;
}
&:hover {
color: #212529;
&:after {
right: 0;
left: 0;
// height: 50%;
}
}
}
}
}
@media only screen and(max-width: 767px) {
.maybe-date {
display: none;
}
}