-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
56 lines (56 loc) · 1.05 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
<template><NuxtPage /></template>
<style>
@font-face {
font-family: "Figtree";
src: url("./assets/Figtree-VariableFont_wght.ttf") format("truetype");
font-weight: 700;
font-style: normal;
}
:root {
font-family: "Figtree";
line-height: 1.5;
font-weight: 400;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
color: #9a9fa2;
background-color: #222529;
}
body {
margin: 0;
display: flex;
place-items: center;
min-width: 320px;
min-height: 100vh;
}
h1 {
font-size: 3.5rem;
line-height: 1.1;
color: #ffffff;
}
h2 {
font-size: 1.5rem;
font-weight: 600;
opacity: 0.8;
line-height: 1.1;
margin-top: 1rem;
}
button {
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6rem 1.2rem;
margin-top: 3rem;
font-size: 1rem;
font-weight: 500;
font-family: inherit;
background-color: #16a092;
color: #ffffff;
cursor: pointer;
}
button:hover {
outline: none;
background-color: #000000;
}
</style>