mirror of
https://github.com/edg-l/edgarluque.com.git
synced 2024-11-09 09:38:23 +00:00
update look
This commit is contained in:
parent
c5e60b028f
commit
b1c37c6a16
|
@ -1,6 +1,7 @@
|
||||||
$color: #E6E1CF;
|
$color: #E6E1CF;
|
||||||
$bgcolor: #14191F;
|
$bgcolor: #14191F;
|
||||||
$code: #FFAA00;
|
$code: #7abec2;
|
||||||
|
$accent: #4d7577;
|
||||||
$codeblock: #0f1419;
|
$codeblock: #0f1419;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -138,8 +139,9 @@ code {
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
background-color: $codeblock;
|
background-color: $codeblock;
|
||||||
border-left: 4px #FFAA00 solid;
|
border-left: 4px $accent solid;
|
||||||
padding:0px 10px;
|
padding: 0.02em 10px;
|
||||||
|
margin: 6px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
|
@ -207,7 +209,7 @@ ul {
|
||||||
|
|
||||||
h1,h2 {
|
h1,h2 {
|
||||||
border-bottom: 2px $color solid;
|
border-bottom: 2px $color solid;
|
||||||
border-bottom-color: #FFAA00;
|
border-bottom-color: $accent;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -232,3 +234,7 @@ th, td {
|
||||||
}
|
}
|
||||||
|
|
||||||
tr:nth-child(even) {background-color: #1b2127;}
|
tr:nth-child(even) {background-color: #1b2127;}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
border-top: 2px $accent solid
|
||||||
|
}
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
{% block content %} {% endblock %}
|
{% block content %} {% endblock %}
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="section container" style="border-top: 2px #FFAA00 solid">
|
<section class="section container footer">
|
||||||
<p>Copyright © 2019-2024 Edgar Luque</p>
|
<p>Copyright © 2019-2024 Edgar Luque</p>
|
||||||
<p>This page is licensed under a <a href="https://creativecommons.org/licenses/by-nd/4.0/">Creative Commons Attribution-NoDerivatives 4.0 International License</a>.</p>
|
<p>This page is licensed under a <a href="https://creativecommons.org/licenses/by-nd/4.0/">Creative Commons Attribution-NoDerivatives 4.0 International License</a>.</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<ul class="posts">
|
<ul class="posts">
|
||||||
{% for page in section.pages %}
|
{% for page in section.pages %}
|
||||||
<li>
|
<li>
|
||||||
<span><time datetime="{{ page.date }}">{{ page.date }}</time>: </span>
|
<span><time datetime="{{ page.date }}">{{ page.date }}</time> - </span>
|
||||||
<a href="{{ page.permalink }}" title="{{ page.description }}">{{ page.title }}</a>
|
<a href="{{ page.permalink }}" title="{{ page.description }}">{{ page.title }}</a>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in a new issue