-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (70 loc) · 1.17 KB
/
style.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
width: 100%;
height: 100%;
}
.contain{
width: 100%;
height: 100%;
background-color: yellow;
padding: 50px 50px 50px 50px;
display: flex;
align-items: center;
justify-content: center;
border: 10px solid black;
}
.main{
width: 80%;
height: 80%;
background-color: yellowgreen;
border-radius: 10px;
padding: 200px;
}
#publickey{
font-size: 50px;
margin: 10px;
border-radius: 10px;
border: none;
}
#amount{
font-size: 50px;
margin: 20px;
border-radius: 10px;
border: none;
}
#tokenType{
font-size: 50px;
margin: 20px;
border-radius: 10px;
border: none;
}
button{
font-size: 50px;
padding: 20px;
border-radius: 10px;
}
label{
font-size: 50px;
}
#loadingMessage{
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#successMessage {
background-color: #d4edda;
color: #155724;
}
#errorMessage {
background-color: #f8d7da;
color: #721c24;
}