-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (42 loc) · 1.41 KB
/
index.html
File metadata and controls
47 lines (42 loc) · 1.41 KB
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
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DJM6PWBDNV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-DJM6PWBDNV');
</script>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/assets/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ManaJob | gestion de candidatures</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
<style>
html,
body,
#app {
height: 100%;
margin: 0;
padding: 0;
background-color: rgb(207, 250, 254);
background-image: radial-gradient(at 98% 28%, rgb(187, 247, 208) 0, transparent 51%),
radial-gradient(at 63% 74%, rgb(243, 244, 246) 0, transparent 42%),
radial-gradient(at 39% 83%, rgb(110, 145, 132) 0, transparent 80%),
radial-gradient(at 95% 69%, rgb(101, 163, 13) 0, transparent 19%),
radial-gradient(at 48% 18%, rgb(132, 204, 22) 0, transparent 84%),
radial-gradient(at 18% 94%, rgb(165, 243, 252) 0, transparent 63%),
url('/src/assets/grid.svg');
background-size: cover;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
}
</style>