-
Notifications
You must be signed in to change notification settings - Fork 0
/
obfuscator.css
180 lines (179 loc) · 4.99 KB
/
obfuscator.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background-color: #1e1e1e;
color: #e0e0e0;
padding: 20px;
opacity: 0;
transition: opacity 1s ease-in-out;
}
.container {
max-width: 900px;
width: 90%;
padding: 30px;
box-shadow: 0 0 20px rgba(0,0,0,0.5);
background-color: #2a2a2a;
border-radius: 15px;
opacity: 0;
transform: translateY(20px);
transition: all 1s ease-in-out;
}
.CodeMirror {
height: 400px;
margin-bottom: 20px;
border: 1px solid #4a4a4a;
border-radius: 10px;
text-align: left;
font-size: 14px;
opacity: 0;
transform: scale(0.95);
transition: all 1s ease-in-out;
box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.CodeMirror-scroll {
padding-left: 8px;
}
.button-container {
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
opacity: 0;
transform: translateY(20px);
transition: all 1s ease-in-out;
}
button {
flex: 1 1 calc(33.333% - 15px);
min-width: 120px;
padding: 12px;
background-color: #4caf50;
color: #000000;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
position: relative;
overflow: hidden;
}
button:hover {
background-color: #45a049;
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
button:active {
transform: translateY(-1px);
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
button::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 5px;
height: 5px;
background: rgba(255, 255, 255, 0.5);
opacity: 0;
border-radius: 100%;
transform: scale(1, 1) translate(-50%);
transform-origin: 50% 50%;
}
button:focus:not(:active)::after {
animation: ripple 1s ease-out;
}
@keyframes ripple {
0% {
transform: scale(0, 0);
opacity: 1;
}
20% {
transform: scale(25, 25);
opacity: 1;
}
100% {
opacity: 0;
transform: scale(40, 40);
}
}
.status {
margin: 20px 0;
padding: 12px;
background-color: #3a3a3a;
border-radius: 8px;
text-align: center;
font-weight: bold;
opacity: 0;
transition: all 0.5s ease-in-out;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.status.success {
background-color: #2ce014;
color: #000000;
}
.status.error {
background-color: #f44336;
color: #000000;
}
.status.warning {
background-color: #ff9800;
color: #000000;
}
.status.info {
background-color: #2196f3;
color: #000000;
}
input[type="file"] {
display: none;
}
h1 {
color: #4caf50;
margin-bottom: 30px;
text-align: center;
font-size: 1.1em;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
opacity: 0;
transform: translateY(-20px);
transition: all 1s ease-in-out;
}
@media (max-width: 600px) {
button {
flex: 1 1 100%;
}
}
.footer {
margin-top: 20px;
text-align: center;
color: #808080;
font-size: 14px;
opacity: 0;
transition: opacity 1s ease-in-out;
}
.footer a {
color: #4caf50;
text-decoration: none;
transition: color 0.3s ease;
}
.footer a:hover {
color: #45a049;
text-decoration: underline;
}
.code-editor {
height: 400px;
margin-bottom: 20px;
border: 1px solid #4a4a4a;
border-radius: 10px;
text-align: left;
font-size: 14px;
opacity: 0;
transform: scale(0.95);
transition: all 1s ease-in-out;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}