Structure homepage texts in <p>.

This commit is contained in:
Sergio Martínez Portela 2022-01-09 01:12:20 +01:00
parent ac7f24671a
commit e9585bd821

View File

@ -9,8 +9,6 @@
margin: 0 auto;
width: fit-content;
max-width: 100ex;
border-radius: 4px;
text-align: left;
padding: 0 1ex;
}
.links section {
@ -25,6 +23,9 @@
.links section h2 {
margin-top: 0;
}
.links p {
margin: 0;
}
h2 a {
color: black;
}
@ -68,22 +69,30 @@
<div class="links">
<section>
<h2><a href="/blog">Blog</a></h2>
Latest post: <a href="https://codigoparallevar.com/blog/2019/secure-websockets-esp8266-arduino/">[2019] Secure Websockets with ESP8266 and Arduino</a>
<p>
Latest post: <a href="https://codigoparallevar.com/blog/2019/secure-websockets-esp8266-arduino/">[2019] Secure Websockets with ESP8266 and Arduino</a>
</p>
</section>
<section>
<h2>Collaborations</h2>
Latest post in <a href="https://hackliza.gal">Hackliza</a>: <a href="https://hackliza.gal/en/posts/quick_math_on_terminal/">Quick math on the terminal (english)</a>
<a href="https://hackliza.gal/posts/contas_rapidas_no_terminal/">(galician)</a>
<p>
Latest post in <a href="https://hackliza.gal">Hackliza</a>: <a href="https://hackliza.gal/en/posts/quick_math_on_terminal/">Quick math on the terminal (english)</a>
<a href="https://hackliza.gal/posts/contas_rapidas_no_terminal/">(galician)</a>
</p>
</section>
<section>
<h2>Projects</h2>
My most stable project is <a href="https://programaker.com">PrograMaker</a>. Other work-in-progress is in <a href="https://github.com/kenkeiras">GitHub</a>.
<p>
My most stable project is <a href="https://programaker.com">PrograMaker</a>. Other work-in-progress is in <a href="https://github.com/kenkeiras">GitHub</a>.
</p>
</section>
<section id="social">
<h2>Find me</h2>
<a href="https://github.com/kenkeiras">GitHub</a>
<a href="https://gitlab.com/kenkeiras">GitLab</a>
<a href="https://programaker.com/users/kenkeiras">PrograMaker</a>
<p>
<a href="https://github.com/kenkeiras">GitHub</a>
<a href="https://gitlab.com/kenkeiras">GitLab</a>
<a href="https://programaker.com/users/kenkeiras">PrograMaker</a>
</p>
</section>
</div>