inital version of scroll view, burger menu, css reset

This commit is contained in:
j 2021-09-30 18:09:42 +01:00
commit 4faf546335
20 changed files with 438 additions and 42 deletions

View file

@ -0,0 +1,34 @@
#ascroll {
font-family: "Noton Sans";
width: 100vw;
h1 {
margin: 4px;
margin-top: 32px;
margin-bottom: 64px;
font-size: 24px;
letter-spacing: 1px;
font-weight: bold;
}
.player {
position: absolute;
display: none;
width: 100vw;
height: auto;
//transition: opacity 0.4s;
}
.annotation {
.frame {
img {
width: 100vw;
height: auto;
}
}
.text {
margin: 20px 20px;
font-size: 22px;
line-height: 26px;
}
}
}

View file

@ -0,0 +1,18 @@
body {
background: #d3d;
color: #eee;
font-family: "Noto Sans";
font-size: 20px;
overflow-x: hidden;
}
main {
line-height: 1.2em;
}
nav {
a {
color: #fff;
}
}

View file

@ -0,0 +1,48 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

View file

@ -0,0 +1,53 @@
.topnav {
background-color: #333;
position: relative;
height: 72px;
padding-left: 16px;
padding-top: 16px;
@media screen and (max-width: 799px) {
overflow: hidden;
z-index: 100;
height: initial;
padding-left: initial;
padding-top: initial;
}
nav {
display: block;
text-align: right;
margin-right: 16px;
@media screen and (max-width: 799px) {
display: none;
text-align: initial;
margin-right: initial;
}
}
a {
color: white;
text-decoration: none;
font-size: 17px;
@media screen and (max-width: 799px) {
padding: 14px 16px;
display: block;
}
&.icon {
display: none;
@media screen and (max-width: 799px) {
display: block;
position: absolute;
right: 0;
top: 0;
}
}
&:hover {
background-color: #ddd;
color: black;
}
}
}

View file

@ -1,12 +1,4 @@
body {
background: #000;
color: #fff;
font-family: "Noto Sans";
font-size: 20px;
}
nav {
a {
color: #fff;
}
}
@import "partials/reset";
@import "partials/layout";
@import "partials/burger";
@import "partials/ascroll";