This repository was archived by the owner on Jul 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.vue
More file actions
75 lines (64 loc) · 1.23 KB
/
Copy pathApp.vue
File metadata and controls
75 lines (64 loc) · 1.23 KB
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
<template>
<div id="app" class="scanlines">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
<style lang="scss">
@import "src/assets/scss/scanlines.scss"
</style>
<style lang="css">
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
html {
height: 100%;
}
body {
background: black;
color: lightblue !important;
font-family: "Source Code Pro", Hack, Monaco, "Lucida Console", monospace;
font-size: 10pt;
text-shadow: 0 0 10px lightblue;
margin: 0;
min-height: 100%;
}
#app {
// display: flex;
}
#cursor {
font-weight: normal;
background-color: lightblue;
-webkit-animation: 1s blink step-end infinite;
-moz-animation: 1s blink step-end infinite;
-ms-animation: 1s blink step-end infinite;
-o-animation: 1s blink step-end infinite;
animation: 1s blink step-end infinite;
padding: 0 0.25rem;
}
@keyframes blink {
from, to {
visibility: hidden;
}
50% {
visibility: visible;
}
}
#console {
margin: 0.5rem;
}
.prompt {
margin-right: 0.5rem;
}
.vue-typer .custom.char {
color: lightblue;
background-color: transparent;
}
.vue-typer .custom.caret {
background-color: lightblue;
margin-left: 0.25rem;
width: 0.5rem;
}
</style>