-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (92 loc) · 2.29 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Orca</title>
<style>
/**
* Resets (Don't go crazy here, prefer Aphrodite for styles)
*/
html {
height: 100%;
}
body {
position: relative;
margin: 0;
background: #edf2f2;
height: 100%;
}
a {
text-decoration: none;
color: #276ac1;
cursor: pointer;
}
a svg, button svg {
position: relative;
top: -0.15em;
}
hr {
border: 0;
border-bottom: solid 1px #eee;
}
/**
* Animations
*/
@keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}
/**
* Web fonts
*/
@font-face {
font-family: 'Universalis ADF Std';
src: url('/assets/fonts/UniversalisADFStd-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Universalis ADF Std';
src: url('/assets/fonts/UniversalisADFStd-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Universalis ADF Std';
src: url('/assets/fonts/UniversalisADFStd-Italic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
</style>
</head>
<body>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` in this folder.
To create a production bundle, use `npm run build`.
-->
</body>
</html>