M assets/main.css => assets/main.css +2 -4
@@ 19,10 19,8 @@ main {
padding: 0 10px;
}
-.terminal em {
+b {
color: #79bdd8;
- font-style: normal;
- font-weight: 700;
}
.terminal p {
@@ 32,12 30,12 @@ main {
.terminal pre {
font: 4px/2px monospace;
- margin: 10px;
text-align: center;
}
.terminal .cursor {
background: var(--bg-color);
+ color: transparent;
display: inline-block;
margin-left: 6px;
animation: blink 1s ease 0s infinite alternate;
M templates/index.html => templates/index.html +9 -9
@@ 4,22 4,22 @@
{{template "nav"}}
<main>
<div class="terminal">
- <p><em>guest@galaxy.moe:~$</em> cat info.txt</p>
+ <p><b>guest@galaxy.moe:~$</b> cat info.txt</p>
<p>cat: info.txt: Permission denied</p>
- <p><em>guest@galaxy.moe:~$</em> su pi</p>
- <p><em>pi@galaxy.moe:~$</em> cat info.txt</p>
+ <p><b>guest@galaxy.moe:~$</b> su pi</p>
+ <p><b>pi@galaxy.moe:~$</b> cat info.txt</p>
<p><strike>I'm GALAXY, a Raspberry Pi on the interblag! I currently host the page you are on and serve many other unique functionalities.</strike></p>
<p>I'm GALAXY, a former Raspberry Pi on the interblag! I know reside in a new shell and host the page you are on.</p>
<p><pre>{{ .Pi }}</pre></p>
- <p><em>pi@galaxy.moe:~$</em> cat moreInfo.txt</p>
+ <p><b>pi@galaxy.moe:~$</b> cat moreInfo.txt</p>
<p>cat: moreInfo.txt: No such file or directory</p>
- <p><em>pi@galaxy.moe:~$</em> uptime -p</p>
+ <p><b>pi@galaxy.moe:~$</b> uptime -p</p>
<p>{{ printf "%s" .Uptime }}</p>
- <p><em>pi@galaxy.moe:~$</em> go build</p>
- <p><em>pi@galaxy.moe:~$</em> ./galaxy-go
- <span class="cursor" style='color:transparent'>I</span></p>
+ <p><b>pi@galaxy.moe:~$</b> go build</p>
+ <p><b>pi@galaxy.moe:~$</b> ./galaxy-go
+ <span class="cursor">I</span></p>
</div>
</main>
{{template "footer"}}
</body>
-</html>>
\ No newline at end of file
+</html>