-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
88 lines (80 loc) · 1.22 KB
/
index.css
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
76
77
78
79
80
81
82
83
84
85
86
87
88
.container {
max-width: 600px;
margin: auto;
font-family: monospace;
}
.view {
border: 1px solid black;
padding: 10px;
}
.utxo_list {
/*
margin-left: 20px;
margin-right: 20px;
*/
width: 100%;
color: grey;
margin-bottom: 30px;
}
.utxo_list_row {
display: flex;
justify-content: space-around;
align-items: center;
}
.utxo_list_row > * {
/* flex: 1; */
}
.btn {
font-family: monospace;
}
.send_view {
display: flex;
align-items: stretch;
width: 100%;
flex-direction: column;
gap: 5px;
}
.flex_row {
display: flex;
flex-direction: row;
}
.flex_column_center {
display: flex;
align-items: center;
flex-direction: column;
}
.tx_confirm_row {
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.bottom_controls {
display: flex;
align-items: center;
flex-direction: row;
gap: 10px;
}
@keyframes blink {
0% {
opacity: 0.2;
}
20% {
opacity: 1;
}
100% {
opacity: 0.2;
}
}
.saving span {
animation-name: blink;
animation-duration: 1.4s;
animation-iteration-count: infinite;
animation-fill-mode: both;
}
.saving span:nth-child(2) {
animation-delay: 0.2s;
}
.saving span:nth-child(3) {
animation-delay: 0.4s;
}