All checks were successful
continuous-integration/drone/push Build is passing
95 lines
1.2 KiB
SCSS
95 lines
1.2 KiB
SCSS
@use "./base.scss";
|
|
|
|
a[href^=http]:not([href*=garden\.struchkov\.dev]):after {
|
|
content: " ↗"
|
|
}
|
|
|
|
article {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
a.external {
|
|
text-decoration: none;
|
|
border-bottom: 1.3px dashed;
|
|
}
|
|
|
|
a.internal {
|
|
border-radius: .1875rem;
|
|
padding: 0 .3rem;
|
|
}
|
|
|
|
.recent-notes>ul.recent-ul>li .section>.desc>span>a {
|
|
padding: 0;
|
|
background: none;
|
|
}
|
|
|
|
.search>#search-container {
|
|
background-color: #23252f33;
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.backlinks>ul {
|
|
list-style: disc;
|
|
}
|
|
|
|
.github-source {
|
|
a {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
|
|
li.section-li>.section .meta {
|
|
margin: 0;
|
|
}
|
|
|
|
.article-title {
|
|
margin: 0.5rem 0 0;
|
|
}
|
|
|
|
.text-highlight {
|
|
margin: -3px -3px -6px;
|
|
padding: 3px 3px 6px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 6rem;
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
h3 {
|
|
margin-top: 4rem;
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.backlinks {
|
|
h3 {
|
|
margin-top: 4rem;
|
|
font-size: 1.4rem;
|
|
}
|
|
}
|
|
|
|
h4 {
|
|
margin-top: 2rem;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.page article p>strong {
|
|
color: var(--secondary);
|
|
}
|
|
|
|
:not(pre)>code {
|
|
background: #e5eff5;
|
|
border: 1px solid var(--secondary);
|
|
border-radius: 6px;
|
|
color: #903;
|
|
font-size: .85em;
|
|
padding: .24rem .4rem .19rem;
|
|
text-shadow: none;
|
|
vertical-align: 0;
|
|
white-space: normal;
|
|
word-break: break-word;
|
|
} |