Compare commits
No commits in common. "9e81c37bfd3e4ed698475e5ad6e211d9fdcfce4f" and "4ca952604c883001de7535c6e6b788e23a776d09" have entirely different histories.
9e81c37bfd
...
4ca952604c
|
@ -1,35 +0,0 @@
|
||||||
<!doctype html>
|
|
||||||
<html lang="en-US">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
||||||
<link rel="stylesheet" href="styles.css" />
|
|
||||||
<link rel="icon" href="favicon.ico" />
|
|
||||||
<script src="elements.js" type="text/javascript" defer></script>
|
|
||||||
<title>Attributions</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<dd-header></dd-header>
|
|
||||||
<main>
|
|
||||||
<article>
|
|
||||||
<h1>Attributions.</h1>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
"<a href="https://www.flickr.com/photos/genista/45519453/in/photostream/">watching</a>"
|
|
||||||
by
|
|
||||||
<a href="https://www.flickr.com/photos/genista/">Kai Schreiber</a>
|
|
||||||
is licensed under
|
|
||||||
<a href="https://creativecommons.org/licenses/by-sa/2.0/">CC BY-SA 2.0</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
That weird usb mouse comic on the about page is
|
|
||||||
by
|
|
||||||
<a href="https://www.instagram.com/hunter.slugdaddy/">Hunter Scheiderer</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</article>
|
|
||||||
</main>
|
|
||||||
<dd-footer></dd-footer>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -31,7 +31,6 @@ class DDFooter extends HTMLElement {
|
||||||
<footer>
|
<footer>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/about.html">about</a></li>
|
<li><a href="/about.html">about</a></li>
|
||||||
<li><a href="/attributions.html">attributions</a></li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
`;
|
`;
|
||||||
|
|
BIN
favicon.ico
BIN
favicon.ico
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.3 KiB |
|
@ -12,7 +12,7 @@
|
||||||
<body>
|
<body>
|
||||||
<dd-header></dd-header>
|
<dd-header></dd-header>
|
||||||
<main>
|
<main>
|
||||||
<nav>
|
<aside>
|
||||||
<h2>Contents</h2>
|
<h2>Contents</h2>
|
||||||
<ol>
|
<ol>
|
||||||
<li><a href="#metal-gear-solid-trivia">Top</a></li>
|
<li><a href="#metal-gear-solid-trivia">Top</a></li>
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
<li><a href="#some-more-notes">Some more notes</a></li>
|
<li><a href="#some-more-notes">Some more notes</a></li>
|
||||||
</ol></li>
|
</ol></li>
|
||||||
</ol>
|
</ol>
|
||||||
</nav>
|
</aside>
|
||||||
|
|
||||||
<article>
|
<article>
|
||||||
<h1 id="metal-gear-solid-trivia">Metal Gear Solid Trivia</h1>
|
<h1 id="metal-gear-solid-trivia">Metal Gear Solid Trivia</h1>
|
||||||
|
|
|
@ -9,7 +9,7 @@ html {
|
||||||
header,
|
header,
|
||||||
footer,
|
footer,
|
||||||
article,
|
article,
|
||||||
main nav {
|
aside {
|
||||||
border: 3px black solid;
|
border: 3px black solid;
|
||||||
background: turquoise;
|
background: turquoise;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
|
@ -55,7 +55,7 @@ footer {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
#headermain nav {
|
nav {
|
||||||
font-size: x-large;
|
font-size: x-large;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ footer ul li + li::before {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* main content */
|
/* main content */
|
||||||
main nav {
|
aside {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -132,7 +132,7 @@ ol ol ol {
|
||||||
align-items: start;
|
align-items: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
main nav {
|
aside {
|
||||||
flex: auto;
|
flex: auto;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 10px;
|
top: 10px;
|
||||||
|
|
Loading…
Reference in New Issue