-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathApp.vue
75 lines (71 loc) · 1.23 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
<template>
<div id="app">
<Login/>
</div>
</template>
<script>
export default {
name: 'app',
components: {Login: () => import("@/components/Login")}
}
</script>
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 120px;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
.pubKey{
font-family:monospace;
color:grey;
font-size:12px;
max-width:345px;
margin-bottom:-3px;
overflow:hidden;
text-overflow:ellipsis;
white-space: nowrap;
padding:5px 5px 0 5px;
display:inline-block;
}
.keyIndex{
font-size:12px;
border: 1px solid grey;
width:10px;
/* height:20px; */
padding:0 3px;
display:inline-block;
color:grey;
/* margin-bottom:10px; */
}
.accountName{
/* left:10px; */
margin-right:10px;
color:white;
font-size:13px;
}
.accountAuth{
right:10px;
top:-10px;
color:lightgreen;
font-size:12px;
border:1px solid grey;
padding:0 5px;
}
.accountButton{
text-transform:lowercase;margin: 5px 15px;width:170px;
}
</style>