generated from willCode2Surf/vue3-vite-express-js-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (83 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>vue3-vite-express-js-boilerplatee</title>
<style></style>
</head>
<style lang="scss">
:root {
--background-color: #0e0f16;
--text-primary: #050504;
--text-secondary: #9da9fa;
--device-bg-color: #0f2147;
}
body {
margin: 0px;
}
.content {
background-image: url("/assets/hatch.png");
height: 100vh;
overflow: hidden;
position: relative;
background-position: center; /* Center the image */
background-repeat: repeat;
background-size: cover; /* Resize the background image to cover the entire container */
background-color: black;
}
.cool-title {
font-family: "Teko", sans-serif;
color: black;
font-size: 200px;
opacity: 1;
text-align: center;
margin-top: 10%;
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
.waviy {
position: relative;
-webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
-webkit-text-stroke: 3px black;
}
.waviy span {
font-family: "Teko", sans-serif;
position: relative;
display: inline-block;
color: #fff;
text-transform: uppercase;
animation: waviy 1s infinite;
animation-delay: calc(.1s * var(--i));
}
@keyframes waviy {
0%,40%,100% {
transform: translateY(0)
}
20% {
transform: translateY(-20px)
}
}
</style>
<body class="content">
<div id="app"></div>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Sofia|Poppins|Marhey|Inter|Teko:wght@300;500;600;700&display=swap"
/>
<link href="https://fonts.googleapis.com/css2?family=Teko:wght@300;500;600;700&display=swap" rel="stylesheet">
<script type="module" src="/src/main.js"></script>
<script>
</script>
</body>
</html>