blob: 0f5ebc57fa4abcb30de214b9a86b7dc099e4c524 (
plain)
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
|
.profile {
background-color: rgba(0, 0, 0, 0.8);;
display: flex;
align-items: center;
border-radius: 8px;
max-width: 650px;
margin: 0 auto !important;
}
.profile img {
width: 120px;
height: 120px;
border-radius: 50%;
margin: 16px !important;
}
.profile .info {
margin: 16px;
text-align: left;
}
.profile .pgp-key {
font-family: "Roboto Mono";
font-size: 15px;
color: gray;
}
#blockchain {
display: flex !important;
width: 960px;
height: 600px;
flex-direction: column;
justify-content: end;
}
#blockchain pre {
box-shadow: initial;
line-height: 1em;
margin: 0 auto;
padding: 5px 0;
animation: appear 1s;
}
#blockchain pre.header {
font-weight: bold;
}
.robot {
background-color: #7d7d23;
}
@keyframes appear {
from {
background-color: #91971b;
}
to {
background-color: #222;
}
}
a {
color: white !important;
}
|