interfug18/style/style.css.php

20 lines
361 B
PHP
Raw Normal View History

2015-06-15 23:48:17 +02:00
<?php
header("Expires: ".gmdate("D, d M Y H:i:s", time() + 180) ." GMT"); // Date in the past
header('Content-type: text/css');
$colors = Array(
Array("name"=>"red","rgb"=>"#e30613"),
Array("name"=>"green","rgb"=>"#3aaa35"),
Array("name"=>"blue","rgb"=>"#009fe3")
);
/*
*
.yellow{
color:#ffde00;
}
*
*/
$color=$colors[rand(0, 2)];
2015-07-21 23:50:47 +02:00
include "raw.css";
2015-06-15 23:48:17 +02:00
?>