-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 1.41 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
<!DOCTYPE html>
<!-- DEMO -->
<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>Document</title>
<script type="module">
import "./app"
</script>
<style>
/* Styles */
button {
align-items: center;
background: #FFFFFF;
border: 0 solid #E2E8F0;
box-shadow: .3rem .3rem 1.5rem rgba(0,0,0,0.45);
box-sizing: border-box;
color: #1A202C;
display: inline-flex;
font-family: Inter, sans-serif;
font-size: 1rem;
font-weight: 700;
height: 56px;
justify-content: center;
line-height: 24px;
overflow-wrap: break-word;
padding: 12px 18px;
text-decoration: none;
width: auto;
border-radius: 4px;
cursor: pointer;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
margin:.75rem;
transition: 200ms ease;
}
button:hover {
color:aquamarine;
box-shadow: .25rem .25rem 2rem rgba(0,0,0,0.45);
}
* {
font-family: Roboto, Arial, sans-serif;
}
a:visited {
color:mediumblue
}
</style>
</head>
<body>
</body>
</html>