Skip to content

Commit 6e047d3

Browse files
committed
init secrets.html page and dependencies
1 parent 73a6620 commit 6e047d3

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

css/two.css

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
body {
2+
display: flex;
3+
flex-wrap: wrap;
4+
padding: 0;
5+
margin: 0;
6+
background: black;
7+
}
8+
body * {
9+
padding: 0;
10+
margin: 0;
11+
overflow: hidden;
12+
}
13+
body > div {
14+
flex-grow: 1;
15+
width: 33%;
16+
}
17+
18+
canvas {
19+
width: 100%; height:
20+
100%; background: #222;
21+
}

js/secrets.js

Whitespace-only changes.

secrets.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<html>
2+
<head>
3+
<title>Flowers</title>
4+
<link href="./css/two.css" rel="stylesheet">
5+
<script src="./js/jquery-3.3.1.min.js"></script>
6+
<script src="./js/two.js"></script>
7+
</head>
8+
<body>
9+
10+
</body>
11+
<script src="./js/secrets.js"></script>
12+
</html>

0 commit comments

Comments
 (0)