-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (98 loc) · 1.94 KB
/
Copy pathstyle.css
File metadata and controls
108 lines (98 loc) · 1.94 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
body {
margin: 0;
font-family: Arial, sans-serif;
color: white;
overflow-x: hidden;
position: relative;
background: black;
}
.background {
position: fixed;
width: 100%;
height: 100vh;
background: linear-gradient(-45deg, #ff8800, #9139db, #5a4fcf, #ff8800);
background-size: 600% 600%;
animation: waveBackground 16s ease-in-out infinite;
z-index: -2;
filter: brightness(1.1);
}
@keyframes waveBackground {
0% {
background-position: 0% 50%;
}
25% {
background-position: 50% 75%;
}
50% {
background-position: 100% 50%;
}
75% {
background-position: 50% 25%;
}
100% {
background-position: 0% 50%;
}
}
.highlight {
position: fixed;
width: 200px;
height: 200px;
background: radial-gradient(circle, rgba(255, 136, 0, 0.3) 0%, rgba(255, 136, 0, 0) 80%);
border-radius: 50%;
pointer-events: none;
transform: translate(-50%, -50%);
transition: opacity 0.8s ease-out;
opacity: 0;
z-index: -1;
}
header {
text-align: center;
padding: 20px;
}
input {
padding: 10px;
width: 50%;
border-radius: 5px;
border: none;
font-size: 16px;
outline: none;
background: #222;
color: white;
}
.script-list {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
padding: 20px;
}
.script-item {
background: #333;
padding: 15px;
border-radius: 10px;
width: 80%;
max-width: 600px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
pre {
background: #222;
padding: 10px;
border-radius: 5px;
overflow-x: auto;
white-space: pre-wrap;
word-wrap: break-word;
}
.copy-btn {
background: #ff8800;
border: none;
color: white;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
margin-top: 10px;
transition: 0.3s;
}
.copy-btn:hover {
background: #aa50e0;
}