𝙾𝚆𝙽𝙴𝙳 𝙱𝚈 AGRASiVVE
* {
overflow: hidden;
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
font-family: ‘VT323’, monospace;
background: #000;
color: #00ff00;
margin: 0;
position: relative;
}
button {
background: none;
border: none;
cursor: pointer;
color: #ff00ff;
font-family: ‘VT323’, monospace;
font-size: 2.5vmin;
text-shadow: 0 0 10px #ff00ff;
transition: all 0.3s ease;
}
button:hover {
text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff;
}
video#back {
position: fixed;
top: 50%;
left: 50%;
min-width: 105%;
min-height: 105%;
transform: translateX(-50%) translateY(-50%) rotate(5deg);
filter: brightness(1.2) contrast(1.1); /* Daha parlak ve net */
z-index: -1;
}
#main {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
display: table;
text-align: center;
background: rgba(0, 0, 0, 0.5); /* Arka planı biraz daha şeffaf yaparak video öne çıksın */
z-index: 1;
}
.fof {
display: table-cell;
vertical-align: middle;
}
.fof h1 {
margin: 20px 0;
}
h2 {
font-size: 2.5vmin;
color: #00ccff;
text-shadow: 0 0 10px #00ccff;
margin: 10px 0;
}
h2 a {
color: #46da0c;
text-decoration: none;
text-shadow: 0 0 5px #46da0c;
}
h2 a:hover {
color: #ff00ff;
text-shadow: 0 0 15px #ff00ff;
}
.hacker-rain {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
}
.hacker-rain::before {
position: absolute;
top: -100%;
left: 0;
width: 100%;
height: 200%;
color: #00ff00;
font-family: ‘VT323’, monospace;
font-size: 2vmin;
opacity: 0.2;
animation: rain-fall 5s linear infinite;
white-space: nowrap;
text-shadow: 0 0 5px #00ff00;
}
.hacker-rain::after {
content: “HACK THE PLANET 0101 1010 CYBER TURK”;
position: absolute;
top: -150%;
left: 20%;
width: 100%;
height: 200%;
color: #ff00ff;
font-family: ‘VT323’, monospace;
font-size: 1.8vmin;
opacity: 0.15;
animation: rain-fall 7s linear infinite;
white-space: nowrap;
text-shadow: 0 0 5px #ff00ff;
}
/* Animasyon */
@keyframes rain-fall {
0% { transform: translateY(0); }
100% { transform: translateY(150vh); }
}
𝙾𝚆𝙽𝙴𝙳 𝙱𝚈 AGRASiVVE
Açıklarınızı kapatın sisteme zarar verilmedi.
I haven’t leaked any data, but I could…
Owned By Dods
TÜRKİSH DEFACER WAS HERE
var video = $(‘video’);
(function ($) {
$(document).ready(function () {
var figure = $(“.fof”).hover(hoverVideo);
var figureq = $(“body”).hover(hoverVideo);
var figures = $(“#main”).hover(hoverVideo);
var figurep = $(“*”).hover(hoverVideo);
function hoverVideo(e) {
setTimeout(function () {
$(‘video’).get(0).play();
console.log(‘played’);
}, 30000);
};
});
})(jQuery);
function unmuteee() {
$(“video”).prop(‘muted’, false);
}