mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-04-01 19:50:52 +00:00
39 lines
923 B
Plaintext
39 lines
923 B
Plaintext
<aside class="right-sidebar" aria-label="Right sidebar">
|
|
<div class="shrine__info sidebar--sticky">
|
|
<h2>About</h2>
|
|
{% block shrineAbout %}
|
|
{{ shrineAbout }}
|
|
{% endblock %}
|
|
<h3>Links</h3>
|
|
<ul>
|
|
{% block shrineLinks %}
|
|
{{ shrineLinks }}
|
|
{% endblock %}
|
|
</ul>
|
|
</div>
|
|
</aside>
|
|
|
|
{%- css %}
|
|
.right-sidebar {
|
|
background-color: var(--clr-content-bg);
|
|
font-size: clamp(0.9rem, 0.9rem + 3vw, 1rem);
|
|
}
|
|
|
|
.shrine__info {
|
|
padding: 1rem;
|
|
max-height: var(--ht-sticky-sidebar);
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.shrine__info h2 {
|
|
font-size: clamp(1.5rem, 1rem + 3vw, 1.7rem);
|
|
margin-bottom: 0.2em;
|
|
}
|
|
|
|
.shrine__info h3 {
|
|
font-size: clamp(1.3rem, 1rem + 3vw, 1.5rem);
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.shrine__info ul { margin-top: 0.5em; }
|
|
{% endcss %} |