Skip to content

Commit e98c823

Browse files
committed
Add Small Improve icon
1 parent 2352554 commit e98c823

1 file changed

Lines changed: 50 additions & 2 deletions

File tree

index.html

Lines changed: 50 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,49 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Shadow Validator Portfolio</title>
77
<link rel="stylesheet" href="styles.css">
8+
<style>
9+
body {
10+
font-family: Arial, sans-serif;
11+
background-color: #121212;
12+
color: white;
13+
text-align: center;
14+
margin: 0;
15+
padding: 0;
16+
}
17+
header {
18+
background: #1e1e1e;
19+
padding: 20px;
20+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
21+
}
22+
nav a {
23+
color: white;
24+
text-decoration: none;
25+
margin: 0 10px;
26+
padding: 10px;
27+
border-radius: 5px;
28+
transition: background 0.3s;
29+
}
30+
nav a:hover {
31+
background: #333;
32+
}
33+
#validators {
34+
margin-top: 30px;
35+
}
36+
#validator-list h3 {
37+
background: #222;
38+
padding: 10px;
39+
border-radius: 5px;
40+
display: inline-block;
41+
transition: transform 0.3s;
42+
}
43+
#validator-list h3:hover {
44+
transform: scale(1.05);
45+
}
46+
img {
47+
vertical-align: middle;
48+
margin-right: 8px;
49+
}
50+
</style>
851
</head>
952
<body class="index-page">
1053
<header>
@@ -31,13 +74,18 @@ <h3><a href="https://socotra.juneoscan.io/validator/NodeID-CoK8S8F9VHLjc6imqrw6o
3174
<h3><a href="https://app.testnet.initia.xyz/validator/initvaloper1wnpv6359y4exw0gnx56gt3uvlgq870m0fly0as" target="_blank" rel="noopener noreferrer">
3275
<img src="Initia.jpeg" width="16" height="16"> 4. Validator - Initia</a></h3>
3376
<h3><a href="https://testnet.allora.explorers.guru/account/allo1erknv8k82pz5nn26n2xzfxjank3lg0zxz0p3e5" target="_blank" rel="noopener noreferrer">
34-
<img src="allora.svg" width="16" height="16"> 5. Validator - Allora</a></h3>
77+
<img src="allora.jpeg" width="16" height="16"> 5. Validator - Allora</a></h3>
3578
<h3><a href="https://testnet.nillion.explorers.guru/account/nillion1x7hgacgzm3q0qlghjuscdska93hnnd4japqy3a" target="_blank" rel="noopener noreferrer">
3679
<img src="nillion.jpeg" width="16" height="16"> 6. Validator - Nillion</a></h3>
3780
</div>
3881
</section>
3982

40-
<script src="script.js"></script>
83+
<script>
84+
document.querySelectorAll('#validator-list h3 a').forEach(link => {
85+
link.addEventListener('mouseover', () => link.style.color = '#00bfff');
86+
link.addEventListener('mouseout', () => link.style.color = 'white');
87+
});
88+
</script>
4189
</body>
4290
</html>
4391

0 commit comments

Comments
 (0)