structure header

master
km0 3 years ago
parent 8fd15a86d2
commit b1ad2c57d0

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

@ -3,11 +3,23 @@
--wireframe:#202020; --wireframe:#202020;
--background:#FF6347; --background:#FF6347;
} }
body{
*{
box-sizing: border-box;
}
body, html{
margin: 0; margin: 0;
padding: 0; padding: 0;
background-color: var(--background); background-color: var(--background);
font-family: Arial, Helvetica, sans-serif;
font-size: 21px;
line-height: 1.6;
} }
.container { .container {
display: flex; display: flex;
width: 100vw; width: 100vw;
@ -18,7 +30,6 @@ body{
.container > * { .container > * {
flex-basis: 50%; flex-basis: 50%;
margin: 0;
} }
.atlas { .atlas {
@ -44,26 +55,54 @@ body{
.libretto > * { .libretto > * {
border-bottom: solid 1px var(--wireframe); border-bottom: solid 1px var(--wireframe);
} }
h3{
font-weight: normal;
}
.moment{ .moment{
text-transform: uppercase; text-transform: uppercase;
} }
header{ .cover{
display: flex;
flex-direction: column;
align-items: center;
text-align: 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 { .index {
display: none; display: none;
} }
/* section {
height: 100vh;
} */
#reference { #reference {
display: none; display: none;

Loading…
Cancel
Save