-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
58 lines (52 loc) · 1.17 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
<template>
<div>
<NuxtRouteAnnouncer />
<NuxtPage />
<p>xl</p>
</div>
</template>
<style>
* {
box-sizing: border-box;
}
:root {
/* Default theme */
--background-color: #131111;
--primary-color: #7bff00;
--primary-color-shadow: rgba(123, 255, 0, 0.5);
--secondary-color: #008000;
--border-color: #3e413c;
--terminal-background: #000000;
/* --background-color: #181818;
--primary-color: rgb(0, 153, 255);
--primary-color-shadow: rgba(0, 153, 255, 0.5);
--secondary-color: #0a2ceb;
--terminal-background: #000000; */
/* --background-color: #181818;
--primary-color: rgb(235, 23, 235);
--primary-color-shadow: rgba(235, 23, 235, 0.5);
--border-color: #3d333d;
--secondary-color: #7c02ac;
--terminal-background: #000; */
}
body {
/* background: #000f03; */
background: var(--background-color);
font-family: "Roboto Mono", monospace;
}
::-webkit-scrollbar {
width: 12px;
/* height: 0px; */
}
::-webkit-scrollbar-thumb {
background-color: #424242;
border-radius: 7px;
border: 3px solid #1f1e1e;
}
::-webkit-scrollbar-thumb:hover {
background-color: #4f4f4f;
}
::-webkit-scrollbar-track {
background-color: #1f1e1e;
}
</style>