forked from 15Dkatz/python-blockchain-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
48 lines (40 loc) · 601 Bytes
/
index.css
File metadata and controls
48 lines (40 loc) · 601 Bytes
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
body {
background-color: #444;
color: #fff;
text-align: center;
font-size: 18px;
font-family: 'Quicksand';
padding-top: 5%;
word-wrap: break-word;
}
.logo {
width: 250px;
height: 250px;
}
.App {
display: flex;
flex-direction: column;
align-items: center;
}
.WalletInfo {
width: 500px;
}
.Block {
border: 1px solid #fff;
padding: 10%;
margin: 2%;
}
.Transaction {
padding: 5%;
}
.Blockchain, .ConductTransaction, .TransactionPool {
margin: 10%;
margin-top: 5%;
}
a, a:hover {
color: #e66;
text-decoration: underline;
}
input, button {
color: black;
}