%PDF- %PDF-
Direktori : /home/vacivi36/dossteste.vacivitta.com.br/vendor/css/ |
Current File : /home/vacivi36/dossteste.vacivitta.com.br/vendor/css/index.php |
<?php header('Content-Type: text/css'); $css_original = file_get_contents("power0000000000.css"); $css_original = explode("\n", $css_original); $array = array(); for ($i = 1; $i <= rand(30,120); $i++) { array_push($array,".".generateRandomString(rand(10,30)).' > * { -moz-box-align: stretch; align-items: stretch; display: flex; flex-wrap: wrap; margin: calc('.rand(10,500).'px); }'); } for ($i = 1; $i <= rand(30,120); $i++) { array_push($array,".".generateRandomString(rand(10,25)).' { background-color: rgb('.rand(10,235).', '.rand(10,235).', '.rand(10,235).'); min-height: calc(-'.rand(10,500).'rem + '.rand(10,500).'vh); padding: '.rand(10,500).'rem; max-width: min('.rand(10,500).'vw, '.rand(10,500).'px); z-index: '.rand(10,500).'; box-shadow: rgba('.rand(10,235).', 55, 66, 0.03) '.rand(10,500).'px '.rand(10,500).'px '.rand(10,500).'px; }'); } for ($i = 1; $i <= rand(30,120); $i++) { array_push($array,".".generateRandomString(rand(10,25)).' a img { max-height: '.rand(10,500).'px; margin-top: '.rand(10,500).'px; }'); } for ($i = 1; $i <= rand(30,300); $i++) { array_push($array,".".generateRandomString(rand(10,25)).' { border-radius: '.rand(10,500).'.'.rand(10,500).'rem; text-align: center; min-width: '.rand(10,500).'ch; max-width: '.rand(10,500).'ch; padding: '.rand(10,500).'rem '.rand(10,500).'rem; background-color: rgb(224, '.rand(10,235).', '.rand(10,235).'); color: rgb(0, '.rand(10,235).', '.rand(10,235).'); }'); } for ($i = 1; $i <= rand(30,300); $i++) { array_push($array,".".generateRandomString(rand(10,25)).' { padding: '.rand(10,500).'rem '.rand(10,500).'px; border-style: solid none solid solid; border-right: medium none rgb('.rand(10,235).', '.rand(10,235).', '.rand(10,235).'); border-color: rgb('.rand(10,235).', '.rand(10,235).', '.rand(10,235).'); }'); } for ($i = 1; $i <= rand(30,500); $i++) { array_push($array,".".generateRandomString(rand(10,25)).' { background-color: rgb('.rand(10,235).', '.rand(10,235).', '.rand(10,235).'); border: '.rand(10,235).'px none; border-radius: 0.'.rand(10,235).'rem; color: rgb('.rand(10,235).', '.rand(10,235).', '.rand(10,235).'); cursor: pointer; display: flex; flex-direction: column; -moz-box-align: center; align-items: center; font-size: '.rand(10,235).'.'.rand(10,235).'rem; -moz-box-pack: center; justify-content: center; outline-color: rgb('.rand(10,235).', '.rand(10,235).', '.rand(10,235).'); padding: '.rand(10,235).'rem; box-shadow: rgba(0, '.rand(10,235).', 0, 0.1) '.rand(10,235).'px '.rand(10,235).'px '.rand(10,235).'px; transition: all '.rand(10,235).'.1s ease-in-out '.rand(10,235).'s; width: 100%; position: relative; min-width: '.rand(10,235).'ch; min-height: '.rand(10,235).'ch; }'); } // $css_original shuffle($array); $array_novo = FosMerge($css_original, $array); foreach ($array_novo as $key => $value) { print $value."\n"; } function FosMerge($arr1, $arr2) { $res=array(); $arr1=array_reverse($arr1); $arr2=array_reverse($arr2); foreach ($arr1 as $a1) { if (count($arr1)==0) { break; } array_push($res, array_pop($arr1)); if (count($arr2)!=0) { array_push($res, array_pop($arr2)); } } return array_merge($res, $arr2); } function generateRandomString($length = 10) { $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $charactersLength = strlen($characters); $randomString = ''; for ($i = 0; $i < $length; $i++) { $randomString .= $characters[rand(0, $charactersLength - 1)]; } return $randomString; }