wireframe structure
parent
74694a6c98
commit
7935d3a8da
@ -0,0 +1,3 @@
|
||||
{
|
||||
"liveServer.settings.port": 5501
|
||||
}
|
@ -0,0 +1,43 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<title>Emergent Opera</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="atlas">
|
||||
the atlas here
|
||||
<div class="info">
|
||||
<div class="title">Title</div>
|
||||
<div class="filename">Filename.mp3</div>
|
||||
<div class="position">04:35</div>
|
||||
</div>
|
||||
</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>
|
||||
</header>
|
||||
<section class="index"></section>
|
||||
<section class="contribution">
|
||||
<h4>overture</h4>
|
||||
<h1 class="title">Overture Atlas</h1>
|
||||
<h3>description</h3>
|
||||
<p>the whole description</p>
|
||||
<h3>contents</h3>
|
||||
|
||||
</section>
|
||||
<!-- <section class="vocabulary"></section> -->
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,67 @@
|
||||
:root {
|
||||
--text:rgb(44, 44, 44);
|
||||
--wireframe:#202020;
|
||||
--background:#FF6347;
|
||||
}
|
||||
body{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: var(--background);
|
||||
}
|
||||
.container {
|
||||
display: flex;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.container > * {
|
||||
flex-basis: 50%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.atlas {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
border-right: solid 1px var(--wireframe);
|
||||
}
|
||||
|
||||
.info {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
height: 100px;
|
||||
width: 100%;
|
||||
border-top: solid 1px var(--wireframe);
|
||||
}
|
||||
|
||||
.libretto{
|
||||
|
||||
|
||||
overflow-y: scroll;
|
||||
}
|
||||
.libretto > * {
|
||||
border-bottom: solid 1px var(--wireframe);
|
||||
}
|
||||
h3{
|
||||
font-weight: normal;
|
||||
}
|
||||
h4{
|
||||
text-transform: uppercase;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
header{
|
||||
text-align: center;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.index {
|
||||
display: none;
|
||||
}
|
||||
|
||||
section{
|
||||
height: 100vh;
|
||||
}
|
Loading…
Reference in New Issue