reverted to old web configuration on main branch

This commit is contained in:
2025-10-06 10:56:21 +02:00
parent 696d0e61f1
commit ed20c841ab
515 changed files with 353022 additions and 7422 deletions

View File

@@ -0,0 +1 @@
google.com, pub-9041142141778319, DIRECT, f08c47fec0942fa0

View File

@@ -0,0 +1,72 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Doto:wght@300&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');
html{
scroll-behavior: smooth;
}
body{
font-family: "Exo", serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
}
.wrapper {
position: relative;
width: 100%;
}
.doto-font{
font-family: "Doto", serif;
font-optical-sizing: auto;
font-weight: 300;
font-style: normal;
font-variation-settings: "ROND" 0;
}
.bebas-neue-regular {
font-family: "Bebas Neue", sans-serif;
font-weight: 400;
font-style: normal;
}
footer a{
color: var(--c-text);
text-decoration: none;
}
footer a i{
color: white;
text-decoration: none;
}
footer{
font-family: "Roboto Mono", monospace;
background-color: var(--c-boxes);
margin-top: 2em;
display: flex;
color: white;
align-items: center;
justify-content: space-evenly;
}
footer address{
padding: 1em;
font-style: normal;
}
footer .contacts{
font-size: 2em;
}
@media only screen and (max-width: 990px){
footer{
flex-direction: column;
padding-bottom: 1em;
padding-top: 1em;
}
}

View File

@@ -0,0 +1,76 @@
/*https://www.joshwcomeau.com/css/custom-css-reset/*/
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* 2. Remove default margin */
* {
margin: 0;
}
body {
/* 3. Add accessible line-height */
line-height: 1.5;
/* 4. Improve text rendering */
-webkit-font-smoothing: antialiased;
}
ul, li{
padding: 0;
}
/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
display: block;
max-width: 100%;
}
/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
font: inherit;
}
/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
padding-bottom: 0.5ch;
overflow-wrap: break-word;
}
/* 8. Improve line wrapping */
p {
text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
}
/*
9. Create a root stacking context
*/
#root,
#__next {
isolation: isolate;
}

View File

@@ -0,0 +1,142 @@
nav{
padding: 1.1em;
font-family: "Roboto Mono", monospace;
position: -webkit-sticky;
position: sticky;
top: 0; /* required */
transition: top 1s ease-in-out, border-radius 1s ease-in-out;
z-index: 5;
padding-left: 2em;
padding-right: 2em;
width: max-content;
background: var(--c-boxes);
/*background: -moz-linear-gradient(117deg, rgba(34,34,34,1) 0%, rgba(59,54,54,1) 100%);
background: -webkit-linear-gradient(117deg, rgba(34,34,34,1) 0%, rgba(59,54,54,1) 100%);
background: linear-gradient(117deg, rgba(34,34,34,1) 0%, rgba(59,54,54,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#222222",endColorstr="#3b3636",GradientType=1);*/
color: #fff;
text-align: center;
margin: auto;
border-radius: 2em;
}
nav.isSticky-nav{
border-top-left-radius: 0;
border-top-right-radius: 0;
}
nav ul #nav-logo{
border-right: 0.2em solid var(--c-lines);
}
nav ul #nav-logo span{
line-height: 0.75;
font-size: 1.5em;
}
nav a{
color: #fff;
transition: color 1s;
position: relative;
text-decoration: none;
}
nav a:hover{
color: #fff;
}
nav a::before {
content: "";
position: absolute;
display: block;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: #fff;
transform: scaleX(0);
transition: transform 0.3s ease;
}
nav a:hover::before {
transform: scaleX(1);
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
padding: 0 3em;
}
nav ul li a {
text-decoration: none;
}
#toggle-nav{
display: none;
-webkit-transition: transform 0.5s ease;
-moz-transition: transform 0.5s ease;
-o-transition: transform 0.5s ease;
-ms-transition: transform 0.5s ease;
transition: transform 0.5s ease;
}
.toggle-nav-rotated {
transform: rotate(360deg);
}
.nav-open{
max-height: 20em;
}
@media only screen and (max-width: 990px){
#toggle-nav{
margin-top: 0.25em;
margin-left: 0.75em;
position: absolute;
left: 0;
display: block;
font-size: 2em;
}
nav{
width: 100%;
padding: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
border-bottom-left-radius: 1em;
border-bottom-right-radius: 1em;
overflow: hidden;
}
nav ul {
margin-top: 1em;
gap: 2em;
display: flex;
flex-direction: column;
-webkit-transition: max-height 1s ease;
-moz-transition: max-height 1s ease;
-o-transition: max-height 1s ease;
-ms-transition: max-height 1s ease;
transition: max-height 1s ease;
max-height: 2em;
}
nav ul:last-child{
padding-bottom: 1em;
}
nav ul #nav-logo {
margin: auto;
padding-bottom: 0.5em;
margin-bottom: -1em;
border-bottom: 0.2em solid var(--c-lines);
border-right: none;
}
}

View File

@@ -0,0 +1,839 @@
/*! 98.css v0.1.20 - https://github.com/jdan/98.css */
@font-face {
font-family: "Pixelated MS Sans Serif";
font-style: normal;
font-weight: 400;
src: url("fonts/windows-98/ms_sans_serif.woff") format("woff");
src: url("fonts/windows-98/ms_sans_serif.woff2") format("woff2");
}
@font-face {
font-family: "Pixelated MS Sans Serif";
font-style: normal;
font-weight: 700;
src: url("/static/fonts/windows-98/ms_sans_serif_bold.woff") format("woff");
src: url("/static/fonts/windows-98/ms_sans_serif_bold.woff2") format("woff2");
}
/* Apply the font-family only within .windows-98 */
.windows-98 {
font-family: "Pixelated MS Sans Serif", sans-serif;
display: flex;
justify-content: center;
}
.windows-98 body {
color: #222;
font-family: Arial;
font-size: 12px
}
.windows-98 .title-bar,
.windows-98 .window,
.windows-98 button,
.windows-98 input,
.windows-98 label,
.windows-98 option,
.windows-98 select,
.windows-98 table,
.windows-98 textarea,
.windows-98 ul.tree-view {
-webkit-font-smoothing: none;
font-family: "Pixelated MS Sans Serif", Arial;
font-size: 11px
}
.windows-98 h1 {
font-size: 5rem
}
.windows-98 h2 {
font-size: 2.5rem
}
.windows-98 h3 {
font-size: 2rem
}
.windows-98 h4 {
font-size: 1.5rem
}
.windows-98 u {
border-bottom: .5px solid #222;
text-decoration: none
}
.windows-98 button,
.windows-98 input[type=reset],
.windows-98 input[type=submit] {
border: none;
border-radius: 0;
box-sizing: border-box;
color: transparent;
min-height: 23px;
min-width: 75px;
padding: 0 12px;
text-shadow: 0 0 #222
}
.windows-98 .vertical-bar,
.windows-98 button,
.windows-98 input[type=reset],
.windows-98 input[type=submit] {
background: silver;
box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf
}
.windows-98 .vertical-bar {
height: 20px;
width: 4px
}
.windows-98 button:not(:disabled):active,
.windows-98 input[type=reset]:not(:disabled):active,
.windows-98 input[type=submit]:not(:disabled):active {
box-shadow: inset -1px -1px #fff, inset 1px 1px #0a0a0a, inset -2px -2px #dfdfdf, inset 2px 2px grey;
text-shadow: 1px 1px #222
}
@media (not(hover)) {
button:not(:disabled):hover,
input[type=reset]:not(:disabled):hover,
.windows-98 input[type=submit]:not(:disabled):hover {
box-shadow: inset -1px -1px #fff, inset 1px 1px #0a0a0a, inset -2px -2px #dfdfdf, inset 2px 2px grey
}
}
button:focus,
input[type=reset]:focus,
.windows-98 input[type=submit]:focus {
outline: 1px dotted #000;
outline-offset: -4px
}
button::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
.windows-98 input[type=submit]::-moz-focus-inner {
border: 0
}
:disabled,
:disabled+label,
input[readonly],
.windows-98 input[readonly]+label {
color: grey
}
:disabled+label,
button:disabled,
input[type=reset]:disabled,
.windows-98 input[type=submit]:disabled {
text-shadow: 1px 1px 0 #fff
}
.windows-98 .window {
background: silver;
box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #dfdfdf, inset -2px -2px grey, inset 2px 2px #fff;
padding: 3px
}
.windows-98 .title-bar {
align-items: center;
background: linear-gradient(90deg, navy, #1084d0);
display: flex;
justify-content: space-between;
padding: 3px 2px 3px 3px
}
.windows-98 .title-bar.inactive {
background: linear-gradient(90deg, grey, #b5b5b5)
}
.windows-98 .title-bar-text {
color: #fff;
font-weight: 700;
letter-spacing: 0;
margin-right: 24px
}
.windows-98 .title-bar-controls {
display: flex
}
.windows-98 .title-bar-controls button {
display: block;
min-height: 14px;
min-width: 16px;
padding: 0
}
.windows-98 .title-bar-controls button:active {
padding: 0
}
.windows-98 .title-bar-controls button:focus {
outline: none
}
.windows-98 .title-bar-controls button[aria-label=Minimize] {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='6' height='2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M0 0h6v2H0z'/%3E%3C/svg%3E");
background-position: bottom 3px left 4px;
background-repeat: no-repeat
}
.windows-98 .title-bar-controls button[aria-label=Maximize] {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='9' height='9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 0H0v9h9V0zM8 2H1v6h7V2z' fill='%23000'/%3E%3C/svg%3E");
background-position: top 2px left 3px;
background-repeat: no-repeat
}
.windows-98 .title-bar-controls button[aria-label=Restore] {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M2 0h6v2H2zM7 2h1v4H7zM2 2h1v1H2zM6 5h1v1H6zM0 3h6v2H0zM5 5h1v4H5zM0 5h1v4H0zM1 8h4v1H1z'/%3E%3C/svg%3E");
background-position: top 2px left 3px;
background-repeat: no-repeat
}
.windows-98 .title-bar-controls button[aria-label=Help] {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='6' height='9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M0 1h2v2H0zM1 0h4v1H1zM4 1h2v2H4zM3 3h2v1H3zM2 4h2v2H2zM2 7h2v2H2z'/%3E%3C/svg%3E");
background-position: top 2px left 5px;
background-repeat: no-repeat
}
.windows-98 .title-bar-controls button[aria-label=Close] {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0h2v1h1v1h2V1h1V0h2v1H7v1H6v1H5v1h1v1h1v1h1v1H6V6H5V5H3v1H2v1H0V6h1V5h1V4h1V3H2V2H1V1H0V0z' fill='%23000'/%3E%3C/svg%3E");
background-position: top 3px left 4px;
background-repeat: no-repeat;
margin-left: 2px
}
.windows-98 .status-bar {
gap: 1px;
display: flex;
margin: 0 1px
}
.windows-98 .status-bar-field {
box-shadow: inset -1px -1px #dfdfdf, inset 1px 1px grey;
flex-grow: 1;
margin: 0;
padding: 2px 3px
}
.windows-98 .window-body {
margin: 8px
}
.windows-98 fieldset {
border-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='5' height='5' fill='gray' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0h5v5H0V2h2v1h1V2H0' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0h4v4H0V1h1v2h2V1H0'/%3E%3C/svg%3E") 2;
margin: 0;
padding: 10px;
padding-block-start: 8px
}
.windows-98 legend {
background: silver
}
.windows-98 .field-row {
align-items: center;
display: flex
}
.windows-98 [class^=field-row]+[class^=field-row] {
margin-top: 6px
}
.windows-98 .field-row>*+* {
margin-left: 6px
}
.windows-98 .field-row-stacked {
display: flex;
flex-direction: column
}
.windows-98 .field-row-stacked *+* {
margin-top: 6px
}
.windows-98 label {
align-items: center;
display: inline-flex
}
input[type=checkbox],
.windows-98 input[type=radio] {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
background: 0;
border: none;
margin: 0;
opacity: 0;
position: fixed
}
input[type=checkbox]+label,
.windows-98 input[type=radio]+label {
line-height: 13px
}
.windows-98 input[type=radio]+label {
margin-left: 18px;
position: relative
}
.windows-98 input[type=radio]+label:before {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 0H4v1H2v1H1v2H0v4h1v2h1V8H1V4h1V2h2V1h4v1h2V1H8V0z' fill='gray'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 1H4v1H2v2H1v4h1v1h1V8H2V4h1V3h1V2h4v1h2V2H8V1z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 3h1v1H9V3zm1 5V4h1v4h-1zm-2 2V9h1V8h1v2H8zm-4 0v1h4v-1H4zm0 0V9H2v1h2z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 2h-1v2h1v4h-1v2H8v1H4v-1H2v1h2v1h4v-1h2v-1h1V8h1V4h-1V2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 2h4v1h1v1h1v4H9v1H8v1H4V9H3V8H2V4h1V3h1V2z' fill='%23fff'/%3E%3C/svg%3E");
content: "";
display: inline-block;
height: 12px;
left: -18px;
margin-right: 6px;
position: absolute;
top: 0;
width: 12px
}
.windows-98 input[type=radio]:active+label:before {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 0H4v1H2v1H1v2H0v4h1v2h1V8H1V4h1V2h2V1h4v1h2V1H8V0z' fill='gray'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 1H4v1H2v2H1v4h1v1h1V8H2V4h1V3h1V2h4v1h2V2H8V1z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 3h1v1H9V3zm1 5V4h1v4h-1zm-2 2V9h1V8h1v2H8zm-4 0v1h4v-1H4zm0 0V9H2v1h2z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 2h-1v2h1v4h-1v2H8v1H4v-1H2v1h2v1h4v-1h2v-1h1V8h1V4h-1V2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 2h4v1h1v1h1v4H9v1H8v1H4V9H3V8H2V4h1V3h1V2z' fill='silver'/%3E%3C/svg%3E")
}
.windows-98 input[type=radio]:checked+label:after {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 0H1v1H0v2h1v1h2V3h1V1H3V0z' fill='%23000'/%3E%3C/svg%3E");
content: "";
display: block;
height: 4px;
left: -14px;
position: absolute;
top: 4px;
width: 4px
}
input[type=checkbox]:focus+label,
.windows-98 input[type=radio]:focus+label {
outline: 1px dotted #000
}
.windows-98 input[type=radio][disabled]+label:before {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 0H4v1H2v1H1v2H0v4h1v2h1V8H1V4h1V2h2V1h4v1h2V1H8V0z' fill='gray'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 1H4v1H2v2H1v4h1v1h1V8H2V4h1V3h1V2h4v1h2V2H8V1z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 3h1v1H9V3zm1 5V4h1v4h-1zm-2 2V9h1V8h1v2H8zm-4 0v1h4v-1H4zm0 0V9H2v1h2z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 2h-1v2h1v4h-1v2H8v1H4v-1H2v1h2v1h4v-1h2v-1h1V8h1V4h-1V2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 2h4v1h1v1h1v4H9v1H8v1H4V9H3V8H2V4h1V3h1V2z' fill='silver'/%3E%3C/svg%3E")
}
.windows-98 input[type=radio][disabled]:checked+label:after {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 0H1v1H0v2h1v1h2V3h1V1H3V0z' fill='gray'/%3E%3C/svg%3E")
}
.windows-98 input[type=checkbox]+label {
margin-left: 19px;
position: relative
}
.windows-98 input[type=checkbox]+label:before {
background: #fff;
box-shadow: inset -1px -1px #fff, inset 1px 1px grey, inset -2px -2px #dfdfdf, inset 2px 2px #0a0a0a;
content: "";
display: inline-block;
height: 13px;
left: -19px;
margin-right: 6px;
position: absolute;
width: 13px
}
.windows-98 input[type=checkbox]:active+label:before {
background: silver
}
.windows-98 input[type=checkbox]:checked+label:after {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='7' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 0H6v1H5v1H4v1H3v1H2V3H1V2H0v3h1v1h1v1h1V6h1V5h1V4h1V3h1V0z' fill='%23000'/%3E%3C/svg%3E");
content: "";
display: block;
height: 7px;
left: -16px;
position: absolute;
top: 3px;
width: 7px
}
.windows-98 input[type=checkbox][disabled]+label:before {
background: silver
}
.windows-98 input[type=checkbox][disabled]:checked+label:after {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='7' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 0H6v1H5v1H4v1H3v1H2V3H1V2H0v3h1v1h1v1h1V6h1V5h1V4h1V3h1V0z' fill='gray'/%3E%3C/svg%3E")
}
input[type=email],
input[type=number],
input[type=password],
.windows-98 input[type=text] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: none;
border-radius: 0
}
input[type=email],
input[type=number],
input[type=password],
input[type=text],
.windows-98 select {
background-color: #fff;
box-shadow: inset -1px -1px #fff, inset 1px 1px grey, inset -2px -2px #dfdfdf, inset 2px 2px #0a0a0a;
box-sizing: border-box;
padding: 3px 4px
}
select,
.windows-98 textarea {
border: none
}
.windows-98 textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: #fff;
border-radius: 0;
box-shadow: inset -1px -1px #fff, inset 1px 1px grey, inset -2px -2px #dfdfdf, inset 2px 2px #0a0a0a;
box-sizing: border-box;
padding: 3px 4px
}
input[type=email],
input[type=password],
input[type=text],
.windows-98 select {
height: 21px
}
.windows-98 input[type=number] {
height: 22px
}
input[type=email],
input[type=number],
input[type=password],
.windows-98 input[type=text] {
line-height: 2
}
input[type=email]:disabled,
input[type=email]:read-only,
input[type=number]:disabled,
input[type=number]:read-only,
input[type=password]:disabled,
input[type=password]:read-only,
input[type=text]:disabled,
input[type=text]:read-only,
.windows-98 textarea:disabled {
background-color: silver
}
.windows-98 select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 0H0v16h1V1h14V0z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 1H1v14h1V2h12V1H2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 17H0v-1h15V0h1v17z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 1h-1v14H1v1h14V1z' fill='gray'/%3E%3Cpath fill='silver' d='M2 2h12v13H2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 6H4v1h1v1h1v1h1v1h1V9h1V8h1V7h1V6z' fill='%23000'/%3E%3C/svg%3E");
background-position: top 2px right 2px;
background-repeat: no-repeat;
border-radius: 0;
padding-right: 32px;
position: relative
}
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=text]:focus,
select:focus,
.windows-98 textarea:focus {
outline: none
}
.windows-98 input[type=range] {
-webkit-appearance: none;
background: transparent;
width: 100%
}
.windows-98 input[type=range]:focus {
outline: none
}
.windows-98 input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0v16h2v2h2v2h1v-1H3v-2H1V1h9V0z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 1v15h1v1h1v1h1v1h2v-1h1v-1h1v-1h1V1z' fill='%23C0C7C8'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 1h1v15H8v2H6v2H5v-1h2v-2h2z' fill='%2387888F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 0h1v16H9v2H7v2H5v1h1v-2h2v-2h2z' fill='%23000'/%3E%3C/svg%3E");
border: none;
box-shadow: none;
height: 21px;
transform: translateY(-8px);
width: 11px
}
.windows-98 input[type=range].has-box-indicator::-webkit-slider-thumb {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0v20h1V1h9V0z' fill='%23fff'/%3E%3Cpath fill='%23C0C7C8' d='M1 1h8v18H1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 1h1v19H1v-1h8z' fill='%2387888F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 0h1v21H0v-1h10z' fill='%23000'/%3E%3C/svg%3E");
transform: translateY(-10px)
}
.windows-98 input[type=range]::-moz-range-thumb {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0v16h2v2h2v2h1v-1H3v-2H1V1h9V0z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 1v15h1v1h1v1h1v1h2v-1h1v-1h1v-1h1V1z' fill='%23C0C7C8'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 1h1v15H8v2H6v2H5v-1h2v-2h2z' fill='%2387888F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 0h1v16H9v2H7v2H5v1h1v-2h2v-2h2z' fill='%23000'/%3E%3C/svg%3E");
border: 0;
border-radius: 0;
height: 21px;
transform: translateY(2px);
width: 11px
}
.windows-98 input[type=range].has-box-indicator::-moz-range-thumb {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0v20h1V1h9V0z' fill='%23fff'/%3E%3Cpath fill='%23C0C7C8' d='M1 1h8v18H1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 1h1v19H1v-1h8z' fill='%2387888F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 0h1v21H0v-1h10z' fill='%23000'/%3E%3C/svg%3E");
transform: translateY(0)
}
.windows-98 input[type=range]::-webkit-slider-runnable-track {
background: #000;
border-bottom: 1px solid grey;
border-right: 1px solid grey;
box-shadow: 1px 0 0 #fff, 1px 1px 0 #fff, 0 1px 0 #fff, -1px 0 0 #a9a9a9, -1px -1px 0 #a9a9a9, 0 -1px 0 #a9a9a9, -1px 1px 0 #fff, 1px -1px #a9a9a9;
box-sizing: border-box;
height: 2px;
width: 100%
}
.windows-98 input[type=range]::-moz-range-track {
background: #000;
border-bottom: 1px solid grey;
border-right: 1px solid grey;
box-shadow: 1px 0 0 #fff, 1px 1px 0 #fff, 0 1px 0 #fff, -1px 0 0 #a9a9a9, -1px -1px 0 #a9a9a9, 0 -1px 0 #a9a9a9, -1px 1px 0 #fff, 1px -1px #a9a9a9;
box-sizing: border-box;
height: 2px;
width: 100%
}
.windows-98 .is-vertical {
display: inline-block;
height: 150px;
transform: translateY(50%);
width: 4px
}
.windows-98 .is-vertical>input[type=range] {
height: 4px;
margin: 0 16px 0 10px;
transform: rotate(270deg) translateX(calc(-50% + 8px));
transform-origin: left;
width: 150px
}
.windows-98 .is-vertical>input[type=range]::-webkit-slider-runnable-track {
border-bottom: 1px solid grey;
border-left: 1px solid grey;
border-right: 0;
box-shadow: -1px 0 0 #fff, -1px 1px 0 #fff, 0 1px 0 #fff, 1px 0 0 #a9a9a9, 1px -1px 0 #a9a9a9, 0 -1px 0 #a9a9a9, 1px 1px 0 #fff, -1px -1px #a9a9a9
}
.windows-98 .is-vertical>input[type=range]::-moz-range-track {
border-bottom: 1px solid grey;
border-left: 1px solid grey;
border-right: 0;
box-shadow: -1px 0 0 #fff, -1px 1px 0 #fff, 0 1px 0 #fff, 1px 0 0 #a9a9a9, 1px -1px 0 #a9a9a9, 0 -1px 0 #a9a9a9, 1px 1px 0 #fff, -1px -1px #a9a9a9
}
.windows-98 .is-vertical>input[type=range]::-webkit-slider-thumb {
transform: translateY(-8px) scaleX(-1)
}
.windows-98 .is-vertical>input[type=range].has-box-indicator::-webkit-slider-thumb {
transform: translateY(-10px) scaleX(-1)
}
.windows-98 .is-vertical>input[type=range]::-moz-range-thumb {
transform: translateY(2px) scaleX(-1)
}
.windows-98 .is-vertical>input[type=range].has-box-indicator::-moz-range-thumb {
transform: translateY(0) scaleX(-1)
}
.windows-98 select:focus {
background-color: navy;
color: #fff
}
.windows-98 select:focus option {
background-color: #fff;
color: #000
}
.windows-98 select:active {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0h16v17H0V0zm1 16h14V1H1v15z' fill='gray'/%3E%3Cpath fill='silver' d='M1 1h14v15H1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 7H5v1h1v1h1v1h1v1h1v-1h1V9h1V8h1V7z' fill='%23000'/%3E%3C/svg%3E")
}
.windows-98 a {
color: #00f
}
.windows-98 a:focus {
outline: 1px dotted #00f
}
.windows-98 ul.tree-view {
background: #fff;
box-shadow: inset -1px -1px #fff, inset 1px 1px grey, inset -2px -2px #dfdfdf, inset 2px 2px #0a0a0a;
display: block;
margin: 0;
padding: 6px
}
.windows-98 ul.tree-view li {
list-style-type: none
}
.windows-98 ul.tree-view a {
color: #000;
text-decoration: none
}
.windows-98 ul.tree-view a:focus {
background-color: navy;
color: #fff
}
ul.tree-view li,
.windows-98 ul.tree-view ul {
margin-top: 3px
}
.windows-98 ul.tree-view ul {
border-left: 1px dotted grey;
margin-left: 16px;
padding-left: 16px
}
.windows-98 ul.tree-view ul>li {
position: relative
}
.windows-98 ul.tree-view ul>li:before {
border-bottom: 1px dotted grey;
content: "";
display: block;
left: -16px;
position: absolute;
top: 6px;
width: 12px
}
.windows-98 ul.tree-view ul>li:last-child:after {
background: #fff;
bottom: 0;
content: "";
display: block;
left: -20px;
position: absolute;
top: 7px;
width: 8px
}
.windows-98 ul.tree-view details {
margin-top: 0
}
.windows-98 ul.tree-view details[open] summary {
margin-bottom: 0
}
.windows-98 ul.tree-view ul details>summary:before {
margin-left: -22px;
position: relative;
z-index: 1
}
.windows-98 ul.tree-view details>summary:before {
background-color: #fff;
border: 1px solid grey;
content: "+";
display: block;
float: left;
height: 9px;
line-height: 8px;
margin-right: 5px;
padding-left: 1px;
text-align: center;
width: 8px
}
.windows-98 ul.tree-view details[open]>summary:before {
content: "-"
}
ul.tree-view details>summary::-webkit-details-marker,
.windows-98 ul.tree-view details>summary::marker {
content: ""
}
.windows-98 pre {
background: #fff;
box-shadow: inset -1px -1px #fff, inset 1px 1px grey, inset -2px -2px #dfdfdf, inset 2px 2px #0a0a0a;
display: block;
margin: 0;
padding: 12px 8px
}
code,
.windows-98 code * {
font-family: monospace
}
.windows-98 summary:focus {
outline: 1px dotted #000
}
.windows-98 ::-webkit-scrollbar {
width: 16px
}
.windows-98 ::-webkit-scrollbar:horizontal {
height: 17px
}
.windows-98 ::-webkit-scrollbar-corner {
background: #dfdfdf
}
.windows-98 ::-webkit-scrollbar-track {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='2' height='2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 0H0v1h1v1h1V1H1V0z' fill='silver'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 0H1v1H0v1h1V1h1V0z' fill='%23fff'/%3E%3C/svg%3E")
}
.windows-98 ::-webkit-scrollbar-thumb {
background-color: #dfdfdf;
box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf
}
::-webkit-scrollbar-button:horizontal:end:increment,
::-webkit-scrollbar-button:horizontal:start:decrement,
::-webkit-scrollbar-button:vertical:end:increment,
.windows-98 ::-webkit-scrollbar-button:vertical:start:decrement {
display: block
}
.windows-98 ::-webkit-scrollbar-button:vertical:start {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 0H0v16h1V1h14V0z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 1H1v14h1V2h12V1H2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 17H0v-1h15V0h1v17z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 1h-1v14H1v1h14V1z' fill='gray'/%3E%3Cpath fill='silver' d='M2 2h12v13H2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 6H7v1H6v1H5v1H4v1h7V9h-1V8H9V7H8V6z' fill='%23000'/%3E%3C/svg%3E");
height: 17px
}
.windows-98 ::-webkit-scrollbar-button:vertical:end {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 0H0v16h1V1h14V0z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 1H1v14h1V2h12V1H2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 17H0v-1h15V0h1v17z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 1h-1v14H1v1h14V1z' fill='gray'/%3E%3Cpath fill='silver' d='M2 2h12v13H2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 6H4v1h1v1h1v1h1v1h1V9h1V8h1V7h1V6z' fill='%23000'/%3E%3C/svg%3E");
height: 17px
}
.windows-98 ::-webkit-scrollbar-button:horizontal:start {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 0H0v16h1V1h14V0z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 1H1v14h1V2h12V1H2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 17H0v-1h15V0h1v17z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 1h-1v14H1v1h14V1z' fill='gray'/%3E%3Cpath fill='silver' d='M2 2h12v13H2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 4H8v1H7v1H6v1H5v1h1v1h1v1h1v1h1V4z' fill='%23000'/%3E%3C/svg%3E");
width: 16px
}
.windows-98 ::-webkit-scrollbar-button:horizontal:end {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 0H0v16h1V1h14V0z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 1H1v14h1V2h12V1H2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 17H0v-1h15V0h1v17z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 1h-1v14H1v1h14V1z' fill='gray'/%3E%3Cpath fill='silver' d='M2 2h12v13H2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 4H6v7h1v-1h1V9h1V8h1V7H9V6H8V5H7V4z' fill='%23000'/%3E%3C/svg%3E");
width: 16px
}
.windows-98 .window[role=tabpanel] {
position: relative;
z-index: 2
}
.windows-98 menu[role=tablist] {
display: flex;
list-style-type: none;
margin: 0 0 -2px;
padding-left: 3px;
position: relative;
text-indent: 0
}
.windows-98 menu[role=tablist]>li {
border-top-left-radius: 3px;
border-top-right-radius: 3px;
box-shadow: inset -1px 0 #0a0a0a, inset 1px 1px #dfdfdf, inset -2px 0 grey, inset 2px 2px #fff;
z-index: 1
}
.windows-98 menu[role=tablist]>li[aria-selected=true] {
background-color: silver;
margin-left: -3px;
margin-top: -2px;
padding-bottom: 2px;
position: relative;
z-index: 8
}
.windows-98 menu[role=tablist]>li>a {
color: #222;
display: block;
margin: 6px;
text-decoration: none
}
.windows-98 menu[role=tablist]>li[aria-selected=true]>a:focus {
outline: none
}
.windows-98 menu[role=tablist]>li>a:focus {
outline: 1px dotted #222
}
.windows-98 menu[role=tablist].multirows>li {
flex-grow: 1;
text-align: center
}
.windows-98 .sunken-panel {
border: 2px groove transparent;
border-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='5' height='5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='gray' d='M0 0h4v1H0z'/%3E%3Cpath fill='gray' d='M0 0h1v4H0z'/%3E%3Cpath fill='%230a0a0a' d='M1 1h2v1H1z'/%3E%3Cpath fill='%230a0a0a' d='M1 1h1v2H1z'/%3E%3Cpath fill='%23fff' d='M0 4h5v1H0z'/%3E%3Cpath fill='%23fff' d='M4 0h1v5H4z'/%3E%3Cpath fill='%23dfdfdf' d='M3 1h1v3H3z'/%3E%3Cpath fill='%23dfdfdf' d='M1 3h3v1H1z'/%3E%3C/svg%3E") 2;
box-sizing: border-box;
overflow-x: clip;
line-break: anywhere;
}
.sunken-panel,
.windows-98 table {
background-color: #fff
}
.windows-98 table {
width: 100%;
border-collapse: collapse;
position: relative;
text-align: left;
white-space: break-spaces;
}
.windows-98 table>thead>tr>* {
background: silver;
box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf;
box-sizing: border-box;
font-weight: 400;
height: 17px;
padding: 0 6px;
position: sticky;
top: 0
}
.windows-98 table.interactive>tbody>tr {
cursor: pointer
}
.windows-98 table>tbody>tr.highlighted {
background-color: navy;
color: #fff
}
.windows-98 table>tbody>tr>* {
height: 14px;
padding: 0 6px
}
/*# sourceMappingURL=98.css.map */

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

View File

@@ -0,0 +1,24 @@
<svg viewBox="0 0 640 360" xmlns="http://www.w3.org/2000/svg">
<!-- sky -->
<rect x="0" y="0" width="640" height="360" fill="#A9A9A9"/>
<!-- hill -->
<path d="M 0 240 Q 320 60 640 240 L 640 360 L 0 360 Z" fill="#696969"/>
<!-- trees -->
<g fill="#696969" stroke="#696969">
<circle cx="100" cy="192" r="26"/>
<circle cx="112" cy="176" r="29"/>
<circle cx="126" cy="208" r="22"/>
<circle cx="496" cy="184" r="32"/>
<circle cx="528" cy="168" r="26"/>
<circle cx="560" cy="208" r="29"/>
</g>
<!-- clouds -->
<g fill="#696969" stroke="#696969">
<circle cx="90" cy="60" r="25"/>
<circle cx="130" cy="80" r="30"/>
<circle cx="170" cy="50" r="35"/>
<circle cx="300" cy="40" r="28"/>
<circle cx="340" cy="70" r="32"/>
<circle cx="380" cy="60" r="25"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 823 B

View File

@@ -0,0 +1,10 @@
<?xml version="1.0"?>
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<!-- Created with SVG-edit - https://github.com/SVG-Edit/svgedit-->
<g class="layer">
<title>Layer 1</title>
<rect fill="#e0e0e0" height="100" id="svg_3" stroke="#000000" stroke-width="0" width="100" x="0" y="0"/>
<path d="m15,23.23l0,0c0,-4.55 3.6,-8.23 8.04,-8.23l3.65,0l0,0l17.54,0l32.88,0c2.13,0 4.18,0.87 5.68,2.41c1.51,1.54 2.35,3.64 2.35,5.82l0,20.57l0,0l0,12.34l0,0c0,4.55 -3.6,8.23 -8.04,8.23l-32.88,0l-22.91,20.93l5.37,-20.93l-3.65,0c-4.44,0 -8.04,-3.68 -8.04,-8.23l0,0l0,-12.34l0,0z" fill="#696969" id="svg_1" stroke="#000000" stroke-width="0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 705 B

View File

@@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">
<!-- Background -->
<rect width="100%" height="100%" fill="#e0e0e0"/>
<!-- Head -->
<circle cx="100" cy="70" r="40" fill="#bdbdbd"/>
<!-- Shoulders with rounded top edges -->
<rect x="40" y="100" width="120" height="80" rx="20" ry="20" fill="#9e9e9e"/>
</svg>

After

Width:  |  Height:  |  Size: 366 B

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg
version="1.1"
id="Capa_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="800px"
height="800px"
viewBox="0 0 24.75 24.75"
xml:space="preserve">
<g>
<path fill="#000000" d="M0,3.875c0-1.104,0.896-2,2-2h20.75c1.104,0,2,0.896,2,2s-0.896,2-2,2H2C0.896,5.875,0,4.979,0,3.875z M22.75,10.375H2
c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2h20.75c1.104,0,2-0.896,2-2C24.75,11.271,23.855,10.375,22.75,10.375z M22.75,18.875H2
c-1.104,0-2,0.896-2,2s0.896,2,2,2h20.75c1.104,0,2-0.896,2-2S23.855,18.875,22.75,18.875z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 722 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View File

@@ -0,0 +1,3 @@
$(document).ready(function(){
});

2
globalstaticfiles/js/jquery-3.7.1.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,17 @@
$(document).ready(function() {
const $stickyElm = $('nav');
const stickyOffset = $stickyElm.offset().top;
$(window).on('scroll', function() {
const isSticky = $(window).scrollTop() > stickyOffset;
//console.log("sticky: " + isSticky);
$stickyElm.toggleClass('isSticky-nav', isSticky);
});
$('#toggle-nav').click(function () {
$('nav ul').toggleClass('nav-open');
$('#toggle-nav').toggleClass('toggle-nav-rotated');
});
});