blob: ac76592259fe6c6d5a2982189b77aa5146177ff4 (
plain)
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
|
<template>
<div id="app">
<h1>19 PDH Puszcza</h1>
<img alt="Work in progress" src="./assets/wip.png" />
<h3>Strona w trakcie budowy</h3>
</div>
</template>
<script>
export default {
name: "app",
components: {}
};
</script>
<style>
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap");
#app {
font-family: "Roboto Slab", serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #181818;
margin-top: 60px;
}
</style>
|