-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (98 loc) · 5.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>coli-ana</title>
<style>
/* nunito-italic - latin */
@font-face {
font-family: 'Nunito';
font-style: italic;
font-weight: 400;
src: url('/resources/fonts/nunito-v16-latin-italic.eot'); /* IE9 Compat Modes */
src: local(''),
url('/resources/fonts/nunito-v16-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('/resources/fonts/nunito-v16-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
url('/resources/fonts/nunito-v16-latin-italic.woff') format('woff'), /* Modern Browsers */
url('/resources/fonts/nunito-v16-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('/resources/fonts/nunito-v16-latin-italic.svg#Nunito') format('svg'); /* Legacy iOS */
}
/* nunito-regular - latin */
@font-face {
font-family: 'Nunito';
font-style: normal;
font-weight: 400;
src: url('/resources/fonts/nunito-v16-latin-regular.eot'); /* IE9 Compat Modes */
src: local(''),
url('/resources/fonts/nunito-v16-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('/resources/fonts/nunito-v16-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('/resources/fonts/nunito-v16-latin-regular.woff') format('woff'), /* Modern Browsers */
url('/resources/fonts/nunito-v16-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('/resources/fonts/nunito-v16-latin-regular.svg#Nunito') format('svg'); /* Legacy iOS */
}
/* nunito-600 - latin */
@font-face {
font-family: 'Nunito';
font-style: normal;
font-weight: 600;
src: url('/resources/fonts/nunito-v16-latin-600.eot'); /* IE9 Compat Modes */
src: local(''),
url('/resources/fonts/nunito-v16-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('/resources/fonts/nunito-v16-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
url('/resources/fonts/nunito-v16-latin-600.woff') format('woff'), /* Modern Browsers */
url('/resources/fonts/nunito-v16-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
url('/resources/fonts/nunito-v16-latin-600.svg#Nunito') format('svg'); /* Legacy iOS */
}
/* nunito-600italic - latin */
@font-face {
font-family: 'Nunito';
font-style: italic;
font-weight: 600;
src: url('/resources/fonts/nunito-v16-latin-600italic.eot'); /* IE9 Compat Modes */
src: local(''),
url('/resources/fonts/nunito-v16-latin-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('/resources/fonts/nunito-v16-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */
url('/resources/fonts/nunito-v16-latin-600italic.woff') format('woff'), /* Modern Browsers */
url('/resources/fonts/nunito-v16-latin-600italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('/resources/fonts/nunito-v16-latin-600italic.svg#Nunito') format('svg'); /* Legacy iOS */
}
/* nunito-700 - latin */
@font-face {
font-family: 'Nunito';
font-style: normal;
font-weight: 700;
src: url('/resources/fonts/nunito-v16-latin-700.eot'); /* IE9 Compat Modes */
src: local(''),
url('/resources/fonts/nunito-v16-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('/resources/fonts/nunito-v16-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
url('/resources/fonts/nunito-v16-latin-700.woff') format('woff'), /* Modern Browsers */
url('/resources/fonts/nunito-v16-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
url('/resources/fonts/nunito-v16-latin-700.svg#Nunito') format('svg'); /* Legacy iOS */
}
/* nunito-700italic - latin */
@font-face {
font-family: 'Nunito';
font-style: italic;
font-weight: 700;
src: url('/resources/fonts/nunito-v16-latin-700italic.eot'); /* IE9 Compat Modes */
src: local(''),
url('/resources/fonts/nunito-v16-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('/resources/fonts/nunito-v16-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
url('/resources/fonts/nunito-v16-latin-700italic.woff') format('woff'), /* Modern Browsers */
url('/resources/fonts/nunito-v16-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
url('/resources/fonts/nunito-v16-latin-700italic.svg#Nunito') format('svg'); /* Legacy iOS */
}
</style>
<link rel="stylesheet" href="https://coli-conc.gbv.de/css/base.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!--preload-links-->
</head>
<body>
<div id="app"><!--app-html--></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>