structure header

master
km0 2 years ago
parent 8fd15a86d2
commit b1ad2c57d0

@ -20,28 +20,28 @@
</div>
<div class="libretto">
<header class="cover">
<h3>SI18 Weekly Release #3</h3>
<h1>Emergent Opera</h1>
<p>description</p>
<h3>
contribution by: <br />
Kimberley, Chae, Kamo, Supi, Emma, Miri, Carmen, Alex, Gersande
</h3>
<h3>
caretakers: <br />
Erica, Gersande, Kamo
</h3>
<div class="release">SI18 Weekly Release #3</div>
<h1 class="title">Emergent Opera</h1>
<div class="description">
What does it mean? This week we invite you to make content within a common
structure, instead of finding a structure when the contents have already
been made! An emergent opera where each property is part of a bigger whole,
that comes together in the becoming...
</div>
<dl>
<dt>Contribution by</dt>
<dd>
Kimberley, Chae, Kamo, Supi, Emma, <br />
Miri, Carmen, Alex, Gersande
</dd>
<dt>Caretakers</dt>
<dd>Erica, Gersande, Kamo</dd>
</dl>
</header>
<section class="index"></section>
<div class="contributions" id="contributions">
<!-- <section class="contribution">
<div class="moment">overture</div>
<h2 class="title">Overture Atlas</h2>
<div class="description">description</div>
<p>the whole description</p>
<h3>contents</h3>
</section> -->
</div>
<div class="contributions" id="contributions"></div>
<!-- this is a reference for the js script, hidden by default with css -->
<section class="contribution" id="reference">

@ -3,11 +3,23 @@
--wireframe:#202020;
--background:#FF6347;
}
body{
*{
box-sizing: border-box;
}
body, html{
margin: 0;
padding: 0;
background-color: var(--background);
font-family: Arial, Helvetica, sans-serif;
font-size: 21px;
line-height: 1.6;
}
.container {
display: flex;
width: 100vw;
@ -18,7 +30,6 @@ body{
.container > * {
flex-basis: 50%;
margin: 0;
}
.atlas {
@ -44,26 +55,54 @@ body{
.libretto > * {
border-bottom: solid 1px var(--wireframe);
}
h3{
font-weight: normal;
}
.moment{
text-transform: uppercase;
}
header{
.cover{
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
height: 100vh;
min-height: 100vh;
padding: 32px;
}
.cover .release {
font-style: italic;
}
.cover .title {
font-size: 56px;
margin: 64px 0;
}
.cover .description {
max-width: 60ch;
}
dl {
margin-top: 64px;
}
dt {
margin-top: 24px;
font-style: italic;
}
dd {
max-width: 60ch;
margin: 0;
}
.index {
display: none;
}
/* section {
height: 100vh;
} */
#reference {
display: none;

Loading…
Cancel
Save