summary refs log tree commit diff stats
path: root/client/src/App.vue
blob: 5d44890122528f5d75e021d3acbc23d6be41ed91 (plain) (blame)
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
<template>
<Header />
<div class="content-wrapper">
  <router-view />
</div>
</template>

<script>
import Header from '@/components/Header.vue'

export default {
    components: {
        Header
    }
}
</script>

<style>
body {
    background-color: var(--surface-b);
    font-family: "Iosevka Aile", sans-serif;
    color: var(--text-color);
}
.title { font-family: "Iosevka Etoile", serif; }
h1, h2, h3, h4, h5,  h6 {
    margin: 1.5rem 0 1rem 0;
    font-family: "Iosevka Etoile", serif;
    font-weight: 600;
    line-height: 1.2;
    color: inherit;
}
h1:first-child, h2:first-child, h3:first-child,
h4:first-child, h5:first-child, h6:first-child { margin-top: 0; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }
p {
    line-height:1.5;
    margin:0 0 1rem 0;
}
.content-wrapper {
    padding: 0.8rem;
}
.card {
    background: var(--surface-e);
    padding: 2rem;
    -webkit-box-shadow: 0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);
    border-radius: 4px;
    margin-bottom: 2rem;
}
</style>