-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
120 lines (101 loc) · 1.82 KB
/
styles.css
File metadata and controls
120 lines (101 loc) · 1.82 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
body {
font-family: 'Arial', sans-serif;
background: url('/images/background.jpeg') no-repeat center center fixed;
background-size: cover;
color: #ddd;
text-align: center;
margin: 0;
padding: 0;
}
header {
background: #1e1e1e;
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
section {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background: rgba(26, 26, 26, 0.9);
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
text-align: left;
}
h1 {
font-size: 36px;
color: #00bfff;
}
h2 {
font-size: 28px;
color: #fff;
text-align: center;
}
p {
font-size: 18px;
line-height: 1.6;
}
#validator-list {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
#validator-list h3 {
margin: 10px 0;
}
#validator-list a {
display: flex;
align-items: center;
font-size: 20px;
color: #00bfff;
text-decoration: none;
transition: color 0.3s;
}
#validator-list a:hover {
color: #ffcc00;
}
.validator-icon {
width: 15px;
height: 15px;
margin-right: 10px;
}
.archived {
color: red;
font-weight: bold;
margin-left: 5px;
}
footer {
background: rgba(0, 0, 0, 0.9);
padding: 20px;
margin-top: 40px;
text-align: center;
}
.footer-text {
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.footer-icon {
width: 20px;
height: 20px;
}
.social-icons {
display: flex;
justify-content: center;
gap: 20px;
}
.social-icons a {
display: flex;
align-items: center;
text-decoration: none;
}
.social-icons a img {
width: 20px;
height: 20px;
transition: transform 0.3s;
}
.social-icons a img:hover {
transform: scale(1.2);
}