move js and css to their own directories
This commit is contained in:
parent
6429c6a575
commit
bc8b5dc172
7 changed files with 15 additions and 15 deletions
63
css/base.css
Normal file
63
css/base.css
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
@font-face {
|
||||
font-family: Banquise;
|
||||
src: url(../assets/Banquise-Regular.woff);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Dymo;
|
||||
src: url(../assets/Dymo.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Erika;
|
||||
src: url(../assets/Erika-Type.ttf);
|
||||
}
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
|
||||
main {
|
||||
background-color: #413f43;
|
||||
background-image: url(../assets/background.jpg);
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
|
||||
main h1, main h2 {
|
||||
font-family: Banquise;
|
||||
color: white;
|
||||
}
|
||||
|
||||
main h1 {
|
||||
font-size: 8em;
|
||||
}
|
||||
|
||||
nav, footer, aside {
|
||||
background: #d7d7d7;
|
||||
background: url(../assets/paper.avif);
|
||||
padding: 5px;
|
||||
font-family: Erika;
|
||||
}
|
||||
|
||||
nav a, footer a, aside a {
|
||||
font-family: Dymo;
|
||||
font-size: 3em;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
nav a.current {
|
||||
text-decoration: underline 3px;
|
||||
}
|
||||
|
||||
footer a:hover, nav a:hover {
|
||||
transform: rotate(-2deg);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue