From 557d10e871dbeb5fe25afd9dac3321e312ae0eec Mon Sep 17 00:00:00 2001 From: Francesco Luzzana Date: Fri, 24 Jun 2022 02:28:56 +0200 Subject: [PATCH] glossary --- index.html | 12 ++++++------ style.css | 45 +++++++++++++++++++++++++++++++++++++++------ 2 files changed, 45 insertions(+), 12 deletions(-) diff --git a/index.html b/index.html index 6661c5c..894e03b 100644 --- a/index.html +++ b/index.html @@ -56,7 +56,7 @@

The third and last issue of the first year of Experimental Publishing (XPUB), - Radio Implicancies: Methods To Practice Interdependencies + Radio Implicancies: Methods To Practice Interdependencies , is a series of eight, increasingly ambitious, weekly released sound publications. While the name of this publication might give you the impression that those periodical releases were broadcasted, they very @@ -85,9 +85,8 @@

Every other Tuesday of each week, somehow estranged from everyones’ work progress, - all the members of the group, except the - care-takers + all the members of the group, except the + care-takers (a few members responsible of the overall outcome of that week’s publication), would walk into a dedicated room unaware of what kind of experience they would step into. Some publications even shifted from edited projects to live performances, presenting @@ -150,6 +149,7 @@

diff --git a/style.css b/style.css index eb7b7cd..26e5565 100644 --- a/style.css +++ b/style.css @@ -6,7 +6,7 @@ html, body { background-color: #006dfe; font-family: sans-serif; - font-size: 20px; + font-size: 24px; line-height: 1.6; } @@ -155,7 +155,9 @@ li:hover { visibility: hidden; } -main { +main, +footer { + font-size: 24px; padding: 24px; } @@ -167,14 +169,36 @@ main img { display: inline-block; } -dt { - margin-top: 24px; +dl { + display: grid; + grid-template-columns: 1fr 4fr; + gap: 32px; +} + +footer h3 { + margin: 64px 0; + font-size: 1rem; + font-weight: normal; font-style: italic; } + +dt { + background-color: white; + justify-self: start; + align-self: flex-start; + padding: 6px 12px; + + border-radius: 24px; +} + dd { - padding: 0; margin: 0; - max-width: 80ch; + max-width: 60ch; +} + +.note { + background-color: white; + padding: 2px 4px; } @media (max-width: 767.98px) { @@ -191,4 +215,13 @@ dd { main img { max-width: 100%; } + + dl { + display: flex; + flex-direction: column; + } + + dd + dt { + margin-top: 48px; + } }