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
|
|
@ -1,16 +1,16 @@
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: Banquise;
|
font-family: Banquise;
|
||||||
src: url(assets/Banquise-Regular.woff);
|
src: url(../assets/Banquise-Regular.woff);
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: Dymo;
|
font-family: Dymo;
|
||||||
src: url(assets/Dymo.ttf);
|
src: url(../assets/Dymo.ttf);
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: Erika;
|
font-family: Erika;
|
||||||
src: url(assets/Erika-Type.ttf);
|
src: url(../assets/Erika-Type.ttf);
|
||||||
}
|
}
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
|
|
@ -25,7 +25,7 @@ a {
|
||||||
|
|
||||||
main {
|
main {
|
||||||
background-color: #413f43;
|
background-color: #413f43;
|
||||||
background-image: url(assets/background.jpg);
|
background-image: url(../assets/background.jpg);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
}
|
}
|
||||||
|
|
@ -42,7 +42,7 @@ main h1 {
|
||||||
|
|
||||||
nav, footer, aside {
|
nav, footer, aside {
|
||||||
background: #d7d7d7;
|
background: #d7d7d7;
|
||||||
background: url(assets/paper.avif);
|
background: url(../assets/paper.avif);
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
font-family: Erika;
|
font-family: Erika;
|
||||||
}
|
}
|
||||||
|
|
@ -31,7 +31,7 @@ main p {
|
||||||
margin: 1%;
|
margin: 1%;
|
||||||
padding: 1%;
|
padding: 1%;
|
||||||
background: white;
|
background: white;
|
||||||
background: url(assets/notebook.jpg);
|
background: url(../assets/notebook.jpg);
|
||||||
/* border: solid 1px; */
|
/* border: solid 1px; */
|
||||||
opacity: 0.92;
|
opacity: 0.92;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
@ -4,7 +4,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
aside {
|
aside {
|
||||||
background: url(assets/notebook.jpg);
|
background: url(../assets/notebook.jpg);
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="base.css">
|
<link rel="stylesheet" href="css/base.css">
|
||||||
<link rel="stylesheet" href="home.css">
|
<link rel="stylesheet" href="css/home.css">
|
||||||
<link rel="stylesheet" href="drag.css">
|
<link rel="stylesheet" href="css/drag.css">
|
||||||
<script src="drag.js" defer></script>
|
<script src="js/drag.js" defer></script>
|
||||||
<title>stickers</title>
|
<title>stickers</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="base.css">
|
<link rel="stylesheet" href="css/base.css">
|
||||||
<link rel="stylesheet" href="poster.css">
|
<link rel="stylesheet" href="css/poster.css">
|
||||||
<link rel="stylesheet" href="drag.css">
|
<link rel="stylesheet" href="css/drag.css">
|
||||||
<script src="drag.js" defer></script>
|
<script src="js/drag.js" defer></script>
|
||||||
<title>stickers</title>
|
<title>stickers</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue