-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (72 loc) · 1.24 KB
/
style.css
File metadata and controls
74 lines (72 loc) · 1.24 KB
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
body {
font-family : Arial, sans-serif;
background : #0f172a;
color : #e2e8f0;
text-align : center;
padding : 30px;
}
#blockchain {
display : flex;
flex-direction: column;
align-items : center;
}
.block {
border : 2px solid #38bdf8;
border-radius : 10px;
padding : 10px;
margin : 10px;
width : 300px;
background-color: #1e293b;
text-align: left;
}
.block input{
width: 100%;
padding : 4px;
margin-top : 4px;
}
button {
background-color : #38bdf8;
color : black;
border : none;
padding : 10px 20px;
border-radius: 6px;
cursor: pointer;
}
button:hover {
background-color: #0ea5e9;
}
.valid {
border-color: #22c55e;
background-color: #1e3a1e;
}
.invalid {
border-color: #ef4444;
background-color: #3f1e1e;
}
#chainStatus {
font-size: 1.2rem;
margin-top: 15px;
}
h1 {
color: #38bdf8;
font-size: 2rem;
margin-bottom: 5px;
}
h3 {
color: #94a3b8;
margin-bottom: 25px;
}
.block {
transition: all 0.3s ease;
}
.block:hover {
transform: scale(1.02);
box-shadow: 0 0 15px #38bdf8;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.block {
animation: fadeIn 0.4s ease-in;
}