-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
111 lines (93 loc) · 1.51 KB
/
app.vue
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
101
102
103
104
105
106
107
108
109
110
111
<template>
<div>
<Navigation-Header />
<NuxtPage />
<Navigation-Footer />
</div>
</template>
<style>
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Patua+One&family=Roboto&display=swap');
html {
font-family: "Roboto", "sans-serif";
font-size: 18px;
background-color: white;
}
@media (max-width: 1250px) {
html {
font-size: 16px;
}
}
*, *:before, *:after {
box-sizing: border-box;
margin: 0;
}
h1 {
font-family: 'Patua One';
font-size: 3.5rem;
margin-bottom: 30px;
}
@media (max-width: 800px) {
h1 {
font-size: 3rem;
}
}
h2 {
font-size: 1.3rem;
margin-bottom: 25px;
}
h3 {
font-size: 2rem;
margin-bottom: 20px;
font-family: 'Patua One';
}
h4 {
font-size: 1.5rem;
margin-bottom: 20px;
}
h5 {
font-size: 1rem;
}
p {
line-height: 1.75rem;
margin-bottom: 5px;
}
button, .u-button {
display: inline-block;
font-family: 'Roboto', 'sans-serif';
background-color: black;
color: white;
border: 1px solid white;
padding: 15px 30px;
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
margin: 10px 0;
text-decoration: none;
border-radius: 5px;
}
.u-contain {
position: relative;
width: 1300px;
max-width: 100%;
z-index: 10;
margin: 0 auto;
}
.u-center {
text-align: center;
margin-top: -20px;
margin-bottom: 75px;
}
.u-flex {
display: flex;
align-items: center;
}
.u-flex-grow {
flex-grow: 1;
margin-right: 20px;
}
@media (max-width: 1000px) {
.u-hidden-mobile {
display: none;
}
}
</style>