mirror of
https://forgejo.ellis.link/continuwuation/continuwuity/
synced 2026-07-20 12:50:57 +00:00
fix: More CSS tweaks
This commit is contained in:
@@ -305,6 +305,25 @@ ul.bullet-separated {
|
||||
filter: brightness(1.2);
|
||||
}
|
||||
|
||||
.kitty {
|
||||
margin-bottom: 0;
|
||||
overflow: clip;
|
||||
width: fit-content;
|
||||
position: relative;
|
||||
float: right;
|
||||
cursor: default;
|
||||
|
||||
span {
|
||||
display: inline-block;
|
||||
transform: translateX(calc(100% - 1.5em));
|
||||
transition: transform 0.3s ease-in-out;
|
||||
|
||||
&:hover {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 425px) {
|
||||
main {
|
||||
padding-block-start: 2rem;
|
||||
@@ -316,6 +335,20 @@ ul.bullet-separated {
|
||||
width: 100%;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
ul.bullet-separated {
|
||||
display: block;
|
||||
padding-left: inherit;
|
||||
|
||||
li {
|
||||
display: list-item;
|
||||
list-style-type: disc;
|
||||
|
||||
&::before {
|
||||
content: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 799px) {
|
||||
|
||||
@@ -5,11 +5,11 @@ About server
|
||||
{%- endblock -%}
|
||||
|
||||
{%- block content -%}
|
||||
<div class="panel">
|
||||
<div class="panel middle">
|
||||
<h1>About {{ server_name }}</h1>
|
||||
{% if let Some(support_page) = support_page %}
|
||||
<p>
|
||||
Support: <a href="{{ support_page }} target="_blank">{{ support_page }}</a>
|
||||
Visit this server's website: <a href="{{ support_page }} target="_blank">{{ support_page }}</a>
|
||||
</p>
|
||||
{% endif %}
|
||||
{% if !contacts.is_empty() %}
|
||||
@@ -58,7 +58,7 @@ About server
|
||||
</ul>
|
||||
{% endif %}
|
||||
<p>
|
||||
Server version {{ env!("CARGO_PKG_VERSION") }}
|
||||
Server version <b>{{ env!("CARGO_PKG_VERSION") }}</b>
|
||||
{%~ if let Some(version_info) = conduwuit_build_metadata::version_tag() ~%}
|
||||
{%~ if let Some(url) = conduwuit_build_metadata::GIT_REMOTE_COMMIT_URL.or(conduwuit_build_metadata::GIT_REMOTE_WEB_URL) ~%}
|
||||
(<a href="{{ url }}">{{ version_info }}</a>)
|
||||
@@ -73,12 +73,13 @@ About server
|
||||
a high-performance and community-driven <a href="https://matrix.org">Matrix</a> homeserver
|
||||
maintained as an open source project by volunteers from around the world.
|
||||
</p>
|
||||
<p>
|
||||
<ul class="bullet-separated">
|
||||
<li><a href="https://forgejo.ellis.link/continuwuation/continuwuity">Source code</a></li>
|
||||
<li><a href="https://matrix.to/#/#continuwuity:continuwuity.org">Official Matrix chatroom</a></li>
|
||||
<li><span class="project-name">❤</span> <a href="https://opencollective.com/continuwuity">Support the project</a></li>
|
||||
</ul>
|
||||
<ul class="bullet-separated">
|
||||
<li><a href="https://forgejo.ellis.link/continuwuation/continuwuity">Source code</a></li>
|
||||
<li><a href="https://matrix.to/#/#continuwuity:continuwuity.org">Official Matrix chatroom</a></li>
|
||||
<li><span class="project-name">❤</span> <a href="https://opencollective.com/continuwuity">Support the project</a></li>
|
||||
</ul>
|
||||
<p class="kitty">
|
||||
<span>🐈 meow :3</span>
|
||||
</p>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user