-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (88 loc) · 2.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>snowFlakesJS Demo</title>
<style>
* {
margin: 0;
}
body, html {
height: 100%;
width: 100%;
}
body {
position: relative;
background-color: rgb(22, 23, 24);
}
.myDiv {
z-index: -1;
position: absolute;
width: 100%;
height: 100%;
}
.container {
width: 100vw;
height: 100%;
min-height: 100%;
box-sizing: border-box;
overflow-x: hidden;
overflow-y: hidden;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.card {
background-color: rgb(32, 35, 37);
color: white;
padding: 1.5rem;
border-radius: 1rem;
}
h1 {
color: white;
margin: 5px 0;
}
a {
margin: 15px 20px 0 20px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 8px;
background: white;
border-radius: 0.6rem;
text-decoration: none;
font-weight: bold;
color: black;
transition: all 0.2s ease-in;
}
a:hover {
background: rgb(187, 187, 187);
}
img {
width: 20px;
margin-left: 0.25rem;
}
</style>
</head>
<body>
<!-- make a div and provide id to the snowflakes function -->
<div class="myDiv" id="snowFlakesJS">
</div>
<div class="container">
<div class="card">
<h1>Let it snow...</h1>
<h1>Let it snow...</h1>
<h1>Let it snow...</h1>
<a href="https://github.com/Fernando-Lozano/letItSnow"><p>GitHub</p><img src="./images/GitHub-Mark-32px.png" alt=""></a>
</div>
</div>
<script src="./letItSnow.js"></script>
<script>
window.letItSnow("snowFlakesJS", "letItSnow.json");
</script>
</body>
</html>