-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (34 loc) · 1.01 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
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="refresh" content="3;url=doc/demos.html" />
<title>Fore</title>
<script type="module">
import '@polymer/paper-styles/color.js'
import '@polymer/paper-styles/typography.js'
import '@polymer/iron-demo-helpers/demo-snippet.js';
</script>
<style>
h1, h2{
opacity: 0;
}
.wrapper{
text-align: center;
padding: 200px 20px 20px;
}
</style>
<link href="doc/styles.css" type="text/css" rel="stylesheet"/>
<link href="doc/animation.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<div class="wrapper">
<img class="logo tilt-in-top-1" src="resources/images/light7.png">
<h1>Forms & Models</h1>
<!-- <a href="demos.html">Demos</a>-->
<script type="text/javascript">
setTimeout(()=>{
document.querySelector('h1').classList.add('focus-in-contract-bck') ;
},1000)
</script>
</body>
</html>