Follow 80 characters per line rule

This commit is contained in:
Isaac Mills 2024-04-21 16:31:19 -04:00
parent bf9c790a46
commit 169659b540
Signed by: fnmain
GPG key ID: B67D7410F33A0F61
2 changed files with 25 additions and 14 deletions

View file

@ -61,7 +61,8 @@
</div> </div>
</div> </div>
</div> </div>
<div class="w-layout-vflex flex-block-2 purple" style="align-items: flex-start;"> <div class="w-layout-vflex flex-block-2 purple">
<div style="max-width: 575px; align-items: flex-start;">
<h1 class="heading-8" style="font-size: 72px; margin-top: 20px;">{{title}}</h1> <h1 class="heading-8" style="font-size: 72px; margin-top: 20px;">{{title}}</h1>
<div class="w-layout-hflex flex-block-3" style="margin-bottom: 10px;"> <div class="w-layout-hflex flex-block-3" style="margin-bottom: 10px;">
{% for author in authors %} {% for author in authors %}
@ -70,7 +71,10 @@
<div class="text-block-2">{{author.full_name}}</div> <div class="text-block-2">{{author.full_name}}</div>
{% endfor %} {% endfor %}
</div> </div>
<p style="margin-left: 20px;color: white;font-size: 16px">{{published}}</p> <p class="text-block-2" style="margin-left: 20px;margin-bottom: 20px;margin-top:20px;font-size: 16px">
{{published}}
</p>
</div>
</div> </div>
<article class="content">{{body}}</article> <article class="content">{{body}}</article>
<hr> <hr>

View file

@ -44,7 +44,15 @@
} }
article { article {
margin: 20px; display: flex;
flex-direction: column;
align-items: center;
}
article>* {
width: 96vw;
max-width: 575px;
line-height: 1.5;
} }
h1 { h1 {
@ -97,12 +105,11 @@ li {
} }
.flex-block-2.purple { .flex-block-2.purple {
color: #333;
background-color: #552a85;
flex-flow: column; flex-flow: column;
justify-content: space-around; justify-content: space-around;
padding-top: 0; padding-top: 0;
display: flex; display: flex;
background-color: #552a85;
overflow-x: hidden; overflow-x: hidden;
} }
@ -197,7 +204,7 @@ li {
} }
.text-block-2 { .text-block-2 {
color: #fff; color: white;
font-size: 18px; font-size: 18px;
} }