chore: Revert title capitalization of Website Source
Since this is not a header nor a button, it shouldn't have header capitalization
This commit is contained in:
@ -59,16 +59,9 @@ body {
|
|||||||
|
|
||||||
// LAYOUT
|
// LAYOUT
|
||||||
.container {
|
.container {
|
||||||
width: 80vw;
|
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
max-width: var(--content-width);
|
width: min(var(--content-width), 90%);
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 480px) {
|
|
||||||
.container {
|
|
||||||
width: 90vw;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
|
@ -5,10 +5,9 @@
|
|||||||
border-radius: 999px;
|
border-radius: 999px;
|
||||||
box-shadow: 0px 12px 24px -16px rgba(0, 0, 0, 0.5);
|
box-shadow: 0px 12px 24px -16px rgba(0, 0, 0, 0.5);
|
||||||
margin: 1rem auto;
|
margin: 1rem auto;
|
||||||
max-width: calc(var(--content-width) + 10rem);
|
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 1rem;
|
top: 1rem;
|
||||||
width: 80vw;
|
width: min(calc(var(--content-width) + 10rem), 90%);
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
||||||
@media screen and (max-width: 630px) {
|
@media screen and (max-width: 630px) {
|
||||||
@ -17,12 +16,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 480px) {
|
|
||||||
& {
|
|
||||||
width: 90vw;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
nav {
|
nav {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if config.extra.footer.show_source %}
|
{% if config.extra.footer.show_source %}
|
||||||
<p><a href="{{ config.extra.source_url }}">Website Source</a></p>
|
<p><a href="{{ config.extra.source_url }}">Website source</a></p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if config.extra.footer.show_powered_by %}
|
{% if config.extra.footer.show_powered_by %}
|
||||||
|
Reference in New Issue
Block a user