-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (88 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400&family=Montserrat:wght@200;300;400;700&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Geschichte der Felsengartenkellerei Besigheim</title>
<style>
:root {
--white: #fff;
--white-transparent: rgba(255, 255, 255, 0.5);
--gold: #8d804c;
--page-padding-x: 10rem;
--page-padding-y: 5rem;
}
* {
box-sizing: border-box;
}
html {
font-size: 62.5%;
font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
body {
margin: 0;
padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
}
::backdrop {
background-color: green;
}
.text-white {
color: var(--white);
}
.heading-gold {
color: var(--gold);
font-family: 'Merriweather', serif;
font-weight: 300;
letter-spacing: 1px;
font-size: 2rem;
line-height: 3rem;
}
.animated {
animation-name: fade-in;
animation-duration: 0.8s;
animation-timing-function: ease-in;
opacity: 0;
animation-fill-mode: forwards;
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@media screen and (max-width: 1000px) {
html {
font-size: 50%;
}
}
@media screen and (max-width: 600px) {
:root {
--page-padding-x: 6rem;
--page-padding-y: 3rem;
}
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>