index update
This commit is contained in:
parent
b523b6a3f1
commit
af2beefe66
5 changed files with 47 additions and 19 deletions
33
index.html
33
index.html
|
@ -129,17 +129,6 @@
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<main id="hero">
|
<main id="hero">
|
||||||
<section id="hero-headshot">
|
|
||||||
<picture>
|
|
||||||
<source srcset="res/img-home-headshot.avif" type="image/avif" />
|
|
||||||
<source srcset="res/img-home-headshot.webp" type="image/webp" />
|
|
||||||
<img
|
|
||||||
src="res/img-home-headshot.jpg"
|
|
||||||
alt="An image of nnwhen; their face obscured with paints"
|
|
||||||
/>
|
|
||||||
</picture>
|
|
||||||
<p>It/Its; She/Her; They/Them</p>
|
|
||||||
</section>
|
|
||||||
<section id="hero-info">
|
<section id="hero-info">
|
||||||
<h1>I am <b>nnwhen</b></h1>
|
<h1>I am <b>nnwhen</b></h1>
|
||||||
<p>
|
<p>
|
||||||
|
@ -195,6 +184,28 @@
|
||||||
</a>
|
</a>
|
||||||
</nav>
|
</nav>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section id="hero-headshot">
|
||||||
|
<section id="directory">
|
||||||
|
<h1>Directory</h1>
|
||||||
|
<ul>
|
||||||
|
<li><a href="now.html">Now</a></li>
|
||||||
|
<li><a href="poetry/index.html">Poetry</a></li>
|
||||||
|
<li><a href="mirror.html">Samples and Stems</a></li>
|
||||||
|
<li><a href="artwork.html">Artworks</a></li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<picture>
|
||||||
|
<source srcset="res/img-home-headshot.avif" type="image/avif" />
|
||||||
|
<source srcset="res/img-home-headshot.webp" type="image/webp" />
|
||||||
|
<img
|
||||||
|
src="res/img-home-headshot.jpg"
|
||||||
|
alt="An image of nnwhen; their face obscured with paints"
|
||||||
|
/>
|
||||||
|
</picture>
|
||||||
|
<p>It/Its; She/Her; They/Them</p>
|
||||||
|
</section>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer id="free">
|
<footer id="free">
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 19 KiB |
Binary file not shown.
Before Width: | Height: | Size: 132 KiB After Width: | Height: | Size: 104 KiB |
Binary file not shown.
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 28 KiB |
33
style.css
33
style.css
|
@ -310,7 +310,7 @@ li#music:not(#here) a {
|
||||||
height: 50px;
|
height: 50px;
|
||||||
}
|
}
|
||||||
#header-img-group-logo img {
|
#header-img-group-logo img {
|
||||||
height: 60px;
|
height: 80px;
|
||||||
width: 100px;
|
width: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -381,12 +381,9 @@ footer#free {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -ms-flexbox;
|
display: -ms-flexbox;
|
||||||
display: flex;
|
display: flex;
|
||||||
-webkit-box-orient: horizontal;
|
flex-direction: row-reverse;
|
||||||
-webkit-box-direction: normal;
|
-ms-flex-wrap: wrap-reverse;
|
||||||
-ms-flex-direction: row;
|
flex-wrap: wrap-reverse;
|
||||||
flex-direction: row;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
-webkit-box-pack: space-evenly;
|
-webkit-box-pack: space-evenly;
|
||||||
-ms-flex-pack: space-evenly;
|
-ms-flex-pack: space-evenly;
|
||||||
justify-content: space-evenly;
|
justify-content: space-evenly;
|
||||||
|
@ -394,6 +391,9 @@ footer#free {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-family: "Syne", monospace;
|
font-family: "Syne", monospace;
|
||||||
}
|
}
|
||||||
|
#hero-headshot {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
#hero-headshot img {
|
#hero-headshot img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
@ -405,9 +405,14 @@ footer#free {
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
}
|
}
|
||||||
#hero-headshot p {
|
#hero-headshot p {
|
||||||
margin: 0;
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
padding: 2px 5px;
|
||||||
color: var(--subtitle);
|
color: var(--subtitle);
|
||||||
font-size: 1.375rem;
|
font-size: 1.375rem;
|
||||||
|
background-color: var(--text-background);
|
||||||
}
|
}
|
||||||
#hero-headshot p span {
|
#hero-headshot p span {
|
||||||
text-wrap: nowrap;
|
text-wrap: nowrap;
|
||||||
|
@ -466,6 +471,18 @@ footer#free {
|
||||||
animation: shake 2s linear alternate infinite;
|
animation: shake 2s linear alternate infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#directory {
|
||||||
|
position: absolute;
|
||||||
|
margin: 20px;
|
||||||
|
padding: 0 20px;
|
||||||
|
text-align: left;
|
||||||
|
background-color: var(--text-background);
|
||||||
|
}
|
||||||
|
#directory ul {
|
||||||
|
list-style: "> ";
|
||||||
|
padding: 0 0 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
/* asset layouts */
|
/* asset layouts */
|
||||||
.ly-sect {
|
.ly-sect {
|
||||||
margin: 20px auto;
|
margin: 20px auto;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue