mirror of
https://github.com/Xevion/undefined.behavio.rs.git
synced 2025-12-07 09:16:55 -06:00
Fix footer, re-implement commit ID coloration using CSS
This commit is contained in:
@@ -76,6 +76,14 @@ const titleTag = title != undefined ? `${title} | xevion.blog` : 'xevion.blog';
|
|||||||
<slot name="default" />
|
<slot name="default" />
|
||||||
</article>
|
</article>
|
||||||
</div>
|
</div>
|
||||||
|
<p class="text-center">
|
||||||
|
<a href="/feed.xml">Atom</a>
|
||||||
|
|
|
||||||
|
<a href={`${repository_url}/commit/${build_revision}`}>
|
||||||
|
<span id="commit-id" class="build-revision" style={{color: '#' + build_revision.slice(0, 6)}}>#{build_revision.slice(0, 7)}
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
</body>
|
</body>
|
||||||
<!-- <script type="text/javascript"> -->
|
<!-- <script type="text/javascript"> -->
|
||||||
<!-- /** Is all of this too much effort to make the animation play in just the right way? **/ -->
|
<!-- /** Is all of this too much effort to make the animation play in just the right way? **/ -->
|
||||||
@@ -94,12 +102,5 @@ const titleTag = title != undefined ? `${title} | xevion.blog` : 'xevion.blog';
|
|||||||
<!-- -->
|
<!-- -->
|
||||||
<!-- } -->
|
<!-- } -->
|
||||||
<!-- </script> -->
|
<!-- </script> -->
|
||||||
<p class="text-center">
|
|
||||||
<a href="/feed.xml">Atom</a> |
|
|
||||||
<span id="commit-id" class="build-revision">
|
|
||||||
<a href={`${repository_url}/commit/${build_revision}`}>
|
|
||||||
#{build_revision.slice(0, 7)}
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -283,8 +283,8 @@ article {
|
|||||||
.build-revision {
|
.build-revision {
|
||||||
font-family: "CMU Typewriter Text", sans-serif;
|
font-family: "CMU Typewriter Text", sans-serif;
|
||||||
|
|
||||||
a {
|
&:not(:hover) {
|
||||||
color: #d2d2d2;
|
color: #d2d2d2 !important;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user