left align

This commit is contained in:
Jacob 2021-03-11 13:39:34 +01:00
parent 1b841074c1
commit 7f068c1a8d
2 changed files with 7 additions and 5 deletions

View File

@ -172,14 +172,15 @@ ul {
display: table-cell; display: table-cell;
} }
#section ul>li{ #section ul > li{
display: block; display: block;
margin: auto; margin: auto;
float: center; float: center;
text-align: right; //text-align: right;
list-style: none; list-style: none;
} }
#section li{ #section li{
display: table-cell; display: table-cell;
vertical-align: top; vertical-align: top;
@ -193,6 +194,7 @@ ul {
list-style: none; list-style: none;
} }
#menu li{ #menu li{
text-align: right;
//display: inline-block; //display: inline-block;
} }

View File

@ -1,9 +1,9 @@
{{define "contact"}} {{define "contact"}}
<article class="post"> <article class="post">
<ul style="list-style: none;"> <ul style="list-style: none;">
<li>twitter: <b><a class="no-link" style="text-decoration: none; color: inherit" href="https://twitter.com/sketchwhale">@sketchwhale</a></b></li> <li><b><a class="no-link" style="text-decoration: none; color: inherit" href="https://twitter.com/sketchwhale">@sketchwhale</a></b></li>
<li>email: <b>ohayo dot jacob at gmail</b></li> <li><b>ohayo dot jacob at gmail</b></li>
<li>git repo: <b><a class="no-link" style="text-decoration: none; color: inherit" href="gitfub.space/ohayo-jacob">gitfub.space/ohayo-jacob</a></b></li> <li><b><a class="no-link" style="text-decoration: none; color: inherit" href="gitfub.space/ohayo-jacob">gitfub.space/ohayo-jacob</a></b></li>
</ul> </ul>
</article> </article>
{{end}} {{end}}