summary refs log tree commit diff stats
path: root/client/src/App.vue
blob: 92e61338d8e7442b588ec75a04c5b6e43b998d92 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<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: 1rem; }
@media screen and (min-width: 35.5em) {
    .content-wrapper { padding: 2rem; }
}
@media screen and (min-width: 48em) {
    .content-wrapper { padding: 3rem; }
}
@media screen and (min-width: 64em) {
    .content-wrapper { padding: 4rem; }
}
@media screen and (min-width: 80em) {
    .content-wrapper { padding: 6rem; }
}

.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;
}
#subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin: 2rem 0;
}
</style>