-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (35 loc) · 877 Bytes
/
Copy pathstyle.css
File metadata and controls
42 lines (35 loc) · 877 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
/* Add these new styles to your existing CSS */
.form-group select {
width: 100%;
padding: 12px;
border: 2px solid #ddd;
border-radius: 8px;
font-size: 14px;
margin-bottom: 15px;
background: white;
cursor: pointer;
}
.network-info {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 15px;
border-radius: 10px;
margin-bottom: 20px;
text-align: center;
}
.network-info p {
margin: 5px 0;
}
/* Network-specific color schemes */
.network-ethereum {
background: linear-gradient(135deg, #627eea 0%, #6f7bb6 100%);
}
.network-polygon {
background: linear-gradient(135deg, #573691 0%, #703ba2 100%);
}
.network-base {
background: linear-gradient(135deg, #0052ff 0%, #4285f4 100%);
}
.network-sepolia {
background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}