53 lines
2 KiB
PHP
53 lines
2 KiB
PHP
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>CreditPullEngine</title>
|
||
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
||
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&display=swap" rel="stylesheet">
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
font-family: 'Inter', sans-serif;
|
||
|
|
background-color: #030712; /* Slate 950 */
|
||
|
|
overflow-x: hidden;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
::-webkit-scrollbar { width: 6px; height: 6px; }
|
||
|
|
::-webkit-scrollbar-track { background: #0f172a; }
|
||
|
|
::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
|
||
|
|
.glass {
|
||
|
|
background: rgba(255, 255, 255, 0.03);
|
||
|
|
backdrop-filter: blur(16px);
|
||
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
||
|
|
}
|
||
|
|
.glass-panel {
|
||
|
|
background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
|
||
|
|
backdrop-filter: blur(20px);
|
||
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
||
|
|
}
|
||
|
|
@keyframes pulse-ring {
|
||
|
|
0% { transform: scale(0.8); opacity: 0.5; }
|
||
|
|
100% { transform: scale(1.2); opacity: 0; }
|
||
|
|
}
|
||
|
|
.pulse-ring { animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
|
||
|
|
#signals-section { transition: opacity 1s ease, transform 1s ease; }
|
||
|
|
.hidden-section { opacity: 0; transform: translateY(50px); pointer-events: none; height: 0; overflow: hidden; }
|
||
|
|
.visible-section { opacity: 1; transform: translateY(0); pointer-events: auto; height: auto; }
|
||
|
|
</style>
|
||
|
|
|
||
|
|
<?php
|
||
|
|
if($this->Styles) {
|
||
|
|
foreach ($this->Styles as $ks => $Styles) :
|
||
|
|
if(!is_numeric($ks)) {
|
||
|
|
echo PHP_EOL;
|
||
|
|
echo $Styles . PHP_EOL;
|
||
|
|
continue;
|
||
|
|
}
|
||
|
|
echo '<link type="text/css" rel="stylesheet" href="'. $Styles .'">' .PHP_EOL;
|
||
|
|
|
||
|
|
endforeach;
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
</head>
|