Initial commit

master
GreenDimond 2019-07-30 14:45:36 -07:00
commit ba4587ac85
6 changed files with 81 additions and 0 deletions

BIN
assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

35
css/index.css Normal file
View File

@ -0,0 +1,35 @@
html {
height: 100%;
}
body {
height: 100%;
background: linear-gradient(#1d2124, #30363b);
}
.empty {
font-family: 'Josefin Sans', sans-serif;
font-size: 25px;
color: white;
margin: auto;
text-align: center;
padding-top: 25%;
}
.image {
display: block;
margin: auto;
width: 10%;
height: auto;
position: relative;
animation: bob 4s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
@keyframes bob {
0%, 100% {
bottom: 0;
}
50% {
bottom: 20px;
}
}

8
css/storytime.css Normal file
View File

@ -0,0 +1,8 @@
html {
height: 100%;
}
body {
height: 100%;
background: linear-gradient(#1d2124, #30363b);
}

20
index.html Normal file
View File

@ -0,0 +1,20 @@
<!doctype html>
<head>
<meta charset="utf-8">
<html lang="en">
<link rel="stylesheet" href="css/index.css?v=1.0">
<link rel="shortcut icon" href="assets/logo.png" />
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap" rel="stylesheet">
</head>
<body>
<div class="empty">
<p>Nothing to see here.</p>
</div>
<img class="image" src="assets/logo.png"/>
</body>
</html>

0
js/scripts.js Normal file
View File

18
storytime.html Normal file
View File

@ -0,0 +1,18 @@
<!doctype html>
<head>
<meta charset="utf-8">
<html lang="en">
<link rel="stylesheet" href="css/storytime.css?v=1.0">
<link rel="shortcut icon" href="assets/logo.png" />
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap" rel="stylesheet">
<script src="js/scripts.js"></script>
</head>
<body>
</body>
</html>