-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
130 lines (107 loc) · 2.12 KB
/
styles.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
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
120
121
122
123
124
125
126
127
128
129
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
margin: 0px;
padding: 0px;
font-family: 'Arial', sans-serif;
height: 100vh;
overflow: auto;
color: #fff;
}
.background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, #1e1e2f 25%, #252535 25%, #252535 50%, #1e1e2f 50%, #1e1e2f 75%, #252535 75%, #252535);
background-size: 500% 500%;
animation: gradient 10s ease infinite;
}
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.content {
position: relative;
z-index: 1;
text-align: center;
top: 5%;
}
h1 {
font-size: 2.5em;
margin-bottom: 10px;
color: goldenrod;
}
h2 {
margin: 10px 0;
font-size: 1em;
color: gold;
}
.neon-button {
padding: 15px 30px;
font-size: 1.2em;
border: none;
border-radius: 5px;
background-color: transparent;
color: #FFFFFF;
text-transform: uppercase;
cursor: pointer;
position: relative;
overflow: hidden;
transition: color 0.4s ease;
margin: 0 5px;
}
.neon-button.cyan-button::before {
background: linear-gradient(45deg, cyan, #00cfff);
}
.neon-button.magenta-button::before {
background: linear-gradient(45deg, magenta, #ff00ff);
}
.neon-button.orange-button::before {
background: linear-gradient(45deg, orange, #ff7b00);
}
.neon-button::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
filter: blur(15px);
animation: glowing 20s linear infinite;
}
.neon-button:hover {
color: #ff0080;
}
.page {
display: none;
}
.page.active {
display: block;
}
.select-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.select-item {
display: flex;
flex-direction: column;
}
.ip-port-container {
display: flex;
justify-content: space-between;
}
.ip-port-item {
flex: 1;
margin-right: 8px;
}
.ip-port-item:last-child {
margin-right: 0;
}