-
-
Notifications
You must be signed in to change notification settings - Fork 387
/
+layout.svelte
52 lines (49 loc) · 1.02 KB
/
+layout.svelte
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
<script lang="ts">
import '@fontsource/poppins';
import '@fontsource/poppins/600.css';
import '@fontsource/source-sans-pro';
import '@fontsource/source-sans-pro/600.css';
import '@fontsource/source-sans-pro/700.css';
</script>
<svelte:head>
<title>JSCraftCamp</title>
<meta
name="description"
content="JSCraftCamp is a free open space / barcamp in Munich with focus on JavaScript."
/>
</svelte:head>
<slot />
<style>
:root {
--footer-background-color: #000;
--footer-text-color: #fff;
--max-page-width: 66rem;
}
:global(html, body) {
font-family: 'Source Sans Pro', sans-serif;
margin: 0;
height: 100vh;
padding: 0;
}
:global(h1, h2, h3, h4, h5, h6) {
font-family: 'Poppins', sans-serif;
font-weight: 700;
text-transform: uppercase;
}
:global(a) {
color: inherit;
text-decoration: underline;
}
:global(a:hover) {
color: inherit;
text-decoration: none;
}
:global(code) {
background: #0001;
border: 1px solid #0003;
padding: 2px;
}
:global(*) {
box-sizing: border-box;
}
</style>