Skip to content

Commit 31cbbcc

Browse files
committed
Ready For Build-They-Up by @LKrauss1!
1 parent 1cf94cf commit 31cbbcc

File tree

3,863 files changed

+328707
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,863 files changed

+328707
-1
lines changed

README.md

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# Chronolabs Cooperative ~ RSS Calendar Feed ~ Multiple Calendars Here and Now ~ http://time.labs.coop
1+
# Chronolabs Cooperative ~ Internet WhoIS Services API ~ http://whois.labs.coop

assets/css/gradients.php

+125
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
<?php
2+
header('Origin: *');
3+
header('Access-Control-Allow-Origin: *');
4+
header("Content-type: text/css");
5+
error_reporting(0);
6+
ini_set('display_errors', false);?>/**
7+
* Variables for $_GET if specified
8+
*
9+
* $_GET['weights'] = "000--111--010" ~ Minimum on Range||Maximum on Range||Has to mt_rant() Greater than for CSS Update
10+
* $_GET['nodes'] = "html--h1, h2, h3, h4, h5--input--textarea--select" ~ Css HTML Tag classes to define individual grandients
11+
* $_GET['elements'] = "#gradomega, .gradomega--#gradbeta, .gradbeta--#gradcharley, .gradcharley--#graddelta, .graddelta--.boxingsmall" ~ Css Identity and Classing Tags to define individual grandients
12+
* $_GET['reds'] = "21--198" ~ Range for mt_rand() of Minimal Red in RGB and Maximum
13+
* $_GET['greens'] = "31--168" ~ Range for mt_rand() of Minimal Green in RGB and Maximum
14+
* $_GET['blues'] = "42--238" ~ Range for mt_rand() of Minimal Blues in RGB and Maximum
15+
* $_GET['heats'] = "41--99--72--91" ~ Range for mt_rand() / mt_rand() of Heats of Grandienting in percentage
16+
* $_GET['opacities'] = "41--99--72--91" ~ Range for mt_rand() / mt_rand() of Transparency of Grandienting in percentage
17+
*/
18+
19+
20+
<?php
21+
22+
function rgb2html($r, $g=-1, $b=-1)
23+
{
24+
if (is_array($r) && sizeof($r) == 3)
25+
list($r, $g, $b) = $r;
26+
27+
$r = intval($r); $g = intval($g);
28+
$b = intval($b);
29+
30+
$r = dechex($r<0?0:($r>255?255:$r));
31+
$g = dechex($g<0?0:($g>255?255:$g));
32+
$b = dechex($b<0?0:($b>255?255:$b));
33+
34+
$color = (strlen($r) < 2?'0':'').$r;
35+
$color .= (strlen($g) < 2?'0':'').$g;
36+
$color .= (strlen($b) < 2?'0':'').$b;
37+
return '#'.$color;
38+
}
39+
40+
error_reporting(0);
41+
ini_set('display_errors', false);
42+
ini_set('log_errors', false);
43+
44+
if (isset($_GET['sessionid']) && !empty($_GET['sessionid']))
45+
$sesshid = sha1($_GET['sessionid']);
46+
else
47+
$sesshid = sha1(serialize($_SERVER).json_encode($_GET));
48+
49+
session_id($sesshid);
50+
session_start();
51+
$weights = (!isset($_GET['weights']) && !strpos($_GET['weights'], '--') ? array(-80, 35, -11) : explode('--', $_GET['weights']));
52+
$nodes = (!isset($_GET['nodes']) && empty($_GET['nodes']) ? array('html', 'blockquote, pre, code', 'button', 'iframe, embed', 'form') : explode('--', $_GET['nodes']));
53+
$elements = (!isset($_GET['elements']) && empty($_GET['elements']) ? array('#header, .header', '#main, .main', '#content, .content', '#footer, .footer', '.item, #item', '.odd, #odd', '.even, #even') : explode('--', $_GET['elements']));
54+
$reds = (!isset($_GET['reds']) && !strpos($_GET['reds'], '--') ? array(mt_rand(67,127), mt_rand(128,255)) : explode('--', $_GET['reds']));
55+
$greens = (!isset($_GET['greens']) && !strpos($_GET['greens'], '--') ? array(mt_rand(57,127), mt_rand(128,255)) : explode('--', $_GET['greens']));
56+
$blues = (!isset($_GET['blues']) && !strpos($_GET['blues'], '--') ? array(mt_rand(61,127), mt_rand(128,255)) : explode('--', $_GET['blues']));
57+
$heats = (!isset($_GET['heats']) && !strpos($_GET['heats'], '--') ? array(mt_rand(0,49), mt_rand(45,99), mt_rand(0,49), mt_rand(45,99)) : explode('--', $_GET['heats']));
58+
$opacities = (!isset($_GET['opacities']) && !strpos($_GET['opacities'], '--') ? array(mt_rand(0,49), mt_rand(45,99), mt_rand(0,49), mt_rand(45,99)) : explode('--', $_GET['opacities']));
59+
$modes = array();
60+
$modes[] = array("-moz-linear-gradient" => "top", '-webkit-gradient' => "left top, left bottom",'-webkit-linear-gradient' => "top", '-o-linear-gradient'=> "top", "-ms-linear-gradient"=> "top",'linear-gradient'=>'to bottom');
61+
$modes[] = array("-moz-linear-gradient" => "left", '-webkit-gradient' => "left top, right top",'-webkit-linear-gradient' => "left", '-o-linear-gradient'=> "left", "-ms-linear-gradient"=> "left",'linear-gradient'=>'to right');
62+
$modes[] = array("-moz-linear-gradient" => "-45deg", '-webkit-gradient' => "left top, right bottom",'-webkit-linear-gradient' => "-45deg", '-o-linear-gradient'=> "-45deg", "-ms-linear-gradient"=> "-45deg",'linear-gradient'=>'135deg');
63+
$modes[] = array("-moz-linear-gradient" => "45deg", '-webkit-gradient' => "left bottom, right top",'-webkit-linear-gradient' => "45deg", '-o-linear-gradient'=> "45deg", "-ms-linear-gradient"=> "45deg",'linear-gradient'=>'45deg');
64+
$modeskeys = array_keys($modes);
65+
$token = sha1($_SERVER['HTTP_REFERER'] . md5($_SERVER['HTTP_USER_AGENT']) . sha1($_SERVER['REMOTE_ADDR']) . sha1($_SERVER['REQUEST_URI']) . $_SERVER['REMOTE_HOST'] . $_REQUEST['token']);
66+
if (!isset($_SESSION[basename(dirname(__FILE__))]['timers'][$token]))
67+
$_SESSION[basename(dirname(__FILE__))]['timers'][$token] = microtime(true) + mt_rand(360, 8500);
68+
elseif ($_SESSION[basename(dirname(__FILE__))]['timers'][$token] < microtime(true))
69+
{
70+
unset($_SESSION[basename(dirname(__FILE__))][$token]);
71+
$_SESSION[basename(dirname(__FILE__))]['timers'][$token] = microtime(true) + mt_rand(360, 8500);
72+
}
73+
74+
if (!is_array($_SESSION[basename(dirname(__FILE__))][$token]) || isset($_REQUEST['reset']) || is_string($_SESSION[basename(dirname(__FILE__))][$token]) || !isset($_SESSION[basename(dirname(__FILE__))][$token]) || mt_rand($weights[0], $weights[1]) >= $weights[2]) {
75+
$_SESSION[basename(dirname(__FILE__))][$token] = array('reset' => implode(', ', $nodes) . ', ' . implode(', ', $elements) . ' {
76+
background-color: transparent;
77+
}');
78+
79+
foreach(array_merge($nodes, $elements) as $node)
80+
{
81+
mt_srand(mt_rand(-microtime(true), microtime(true)));
82+
mt_srand(mt_rand(-microtime(true), microtime(true)));
83+
mt_srand(mt_rand(-microtime(true), microtime(true)));
84+
$decimals = explode('', str_replace(array(' ', '.'), '', microtime(false)));
85+
shuffle($decimals);
86+
$decalpha = implode("", $decimals);
87+
shuffle($decimals);
88+
$decomega = implode("", $decimals);
89+
$colour = array();
90+
for($rt = 1; $rt<=mt_rand(3,9); $rt++) {
91+
$colour[$rt]['red'] = mt_rand($reds[0], $reds[1]);
92+
$colour[$rt]['green'] = mt_rand($greens[0], $greens[1]);
93+
$colour[$rt]['blue'] = mt_rand($blues[0], $blues[1]);
94+
$colour[$rt]['heat'] = (mt_rand($heats[0], $heats[1]) / mt_rand($heats[2], $heats[3])) * 58.69;
95+
$colour[$rt]['opacity'] = mt_rand($opacities[0], $opacities[1]) / mt_rand($opacities[2], $opacities[3]);
96+
}
97+
$state = $modes[mt_rand(0, count($modes)-1)];
98+
$colorstyle = array();
99+
$colorstop = array();
100+
$kieyes = array_keys($colour);
101+
shuffle($kieyes);
102+
foreach($kieyes as $mkey)
103+
{
104+
$colorstyle[$mkey] = "rgba(".$colour[$mkey]['red'] . ", " . $colour[$mkey]['green'] . ", " . $colour[$mkey]['blue'] . ", " . $colour[$mkey]['opacity'] . ") ". $colour[$mkey]['heat'].'%';
105+
$colorstop[$mkey] = 'color-stop('. $colour[$mkey]['heat'].'%, rgba('.$colour[$mkey]['red'] . ", " . $colour[$mkey]['green'] . ", " . $colour[$mkey]['blue'] . ", " . $colour[$mkey]['opacity'] . "))";
106+
}
107+
$colorstyle = implode(", ", $colorstyle);
108+
$colorstop = implode(", ", $colorstop);
109+
$_SESSION[basename(dirname(__FILE__))][$token][$key][$node] = "$node " . ' {
110+
background: -moz-linear-gradient('.$state['-moz-linear-gradient'].', '.$colorstyle .') !important; /* FF3.6+ */
111+
background: -webkit-gradient(linear, '.$state['-webkit-gradient'].', '. $colorstop . ') !important; /* Chrome,Safari4+ */
112+
background: -webkit-linear-gradient('.$state['-webkit-linear-gradient'].', '.$colorstyle .') !important; /* Chrome10+,Safari5.1+ */
113+
background: -o-linear-gradient('.$state['-o-linear-gradient'].', '.$colorstyle .') !important; /* Opera 11.10+ */
114+
background: -ms-linear-gradient('.$state['-ms-linear-gradient'].', '.$colorstyle .') !important; /* IE10+ */
115+
background: linear-gradient('.$state['linear-gradient'].', '.$colorstyle .') !important; /* W3C */
116+
}
117+
118+
';
119+
}
120+
}
121+
122+
foreach(array_keys($_SESSION[basename(dirname(__FILE__))][$token]) as $key)
123+
echo implode("", $_SESSION[basename(dirname(__FILE__))][$token][$key]);
124+
exit(0);
125+
?>

assets/css/shadowing.php

+125
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
<?php
2+
header('Origin: *');
3+
header('Access-Control-Allow-Origin: *');
4+
header("Content-type: text/css");
5+
?>/**
6+
* Variables for $_GET if specified
7+
*
8+
* $_GET['weights'] = "000||111||010" ~ Minimum on Range||Maximum on Range||Has to mt_rant() Greater than for CSS Update
9+
* $_GET['nodes'] = "html||h1, h2, h3, h4, h5||input||textarea||select" ~ Css Object, ID and HTML Tag classes to define individual shadows
10+
* $_GET['elements'] = "box||text" ~ Shadow types only box or text or both
11+
* $_GET['reds'] = "21||198" ~ Range for mt_rand() of Minimal Red in RGB and Maximum
12+
* $_GET['greens'] = "31||168" ~ Range for mt_rand() of Minimal Green in RGB and Maximum
13+
* $_GET['blues'] = "42||238" ~ Range for mt_rand() of Minimal Blues in RGB and Maximum
14+
* $_GET['ranges'] = "0||3" ~ Range for mt_rand() of Minimal Shadow Depth in pixels and Maximum --- Across the board not 1st, 2nd etc. Setting
15+
* $_GET['firsts'] = "0||3" ~ Range for mt_rand() of Minimal Shadow First Basis Measuring Depth in pixels and Maximum
16+
* $_GET['seconds'] = "0||3" ~ Range for mt_rand() of Minimal Shadow Seconds Basis Measuring Depth in pixels and Maximum
17+
* $_GET['thirds'] = "0||3" ~ Range for mt_rand() of Minimal Shadow Third Basis Measuring Depth in pixels and Maximum
18+
* $_GET['forths'] = "0||3" ~ Range for mt_rand() of Minimal Shadow Forth Basis Measuring Depth in pixels and Maximum
19+
* $_GET['opacities'] = "41||99||72||91" ~ Range for mt_rand() / mt_rand() of Transparency of Shadowing in percentage
20+
*/
21+
22+
<?php
23+
24+
error_reporting(0);
25+
ini_set('display_errors', false);
26+
ini_set('log_errors', false);
27+
28+
$url = 'http://localhost'.$_SERVER['REQUEST_URI'];
29+
parse_str(parse_url($url, PHP_URL_QUERY), $_GET);
30+
31+
if (isset($_GET['sessionid']) && !empty($_GET['sessionid']))
32+
$sesshid = sha1($_GET['sessionid']);
33+
else
34+
$sesshid = sha1(serialize($_SERVER).json_encode($_GET));
35+
$weights = (!isset($_GET['weights']) && !strpos($_GET['weights'], '||') ? array(-80, 35, -11) : explode('||', $_GET['weights']));
36+
$nodes = (!isset($_GET['nodes']) && !strpos($_GET['nodes'], '||') ? array('html', 'h1', 'input', 'button', 'iframe, embed', 'textarea', 'select', 'checkbox', 'radio') : explode('||', $_GET['nodes']));
37+
$elements = (!isset($_GET['elements']) && (!strpos($_GET['elements'], 'box') || !strpos($_GET['elements'], 'text')) ? array('text', 'box') : explode('||', $_GET['elements']));
38+
$reds = (!isset($_GET['reds']) && !strpos($_GET['reds'], '||') ? array('21', '198') : explode('||', $_GET['reds']));
39+
$greens = (!isset($_GET['greens']) && !strpos($_GET['greens'], '||') ? array('31', '168') : explode('||', $_GET['greens']));
40+
$blues = (!isset($_GET['blues']) && !strpos($_GET['blues'], '||') ? array('42', '238') : explode('||', $_GET['blues']));
41+
$firsts = $seconds = $thirds = $forths = (!isset($_GET['ranges']) && !strpos($_GET['ranges'], '||') ? array('0', '3') : explode('||', $_GET['ranges']));
42+
$firsts = (!isset($_GET['firsts']) && !strpos($_GET['firsts'], '||') ? $firsts : explode('||', $_GET['firsts']));
43+
$seconds = (!isset($_GET['seconds']) && !strpos($_GET['seconds'], '||') ? $seconds : explode('||', $_GET['seconds']));
44+
$thirds = (!isset($_GET['thirds']) && !strpos($_GET['thirds'], '||') ? $thirds : explode('||', $_GET['ranges']));
45+
$forths = (!isset($_GET['forths']) && !strpos($_GET['forths'], '||') ? $forths : explode('||', $_GET['forths']));
46+
$opacities = (!isset($_GET['opacities']) && !strpos($_GET['opacities'], '||') ? array('41', '99', '72', '91') : explode('||', $_GET['opacities']));
47+
$token = sha1($_SERVER['HTTP_REFERER'] . md5($_SERVER['HTTP_USER_AGENT']) . sha1($_SERVER['REMOTE_ADDR']) . sha1($_SERVER['REQUEST_URI']) . $_SERVER['REMOTE_HOST'] . $_REQUEST['token']);
48+
49+
if (!isset($_SESSION[basename(dirname(__FILE__))]['timers'][$token]))
50+
$_SESSION[basename(dirname(__FILE__))]['timers'][$token] = microtime(true) + mt_rand(360, 8500);
51+
elseif ($_SESSION[basename(dirname(__FILE__))]['timers'][$token] < microtime(true))
52+
{
53+
unset($_SESSION[basename(dirname(__FILE__))][$token]);
54+
$_SESSION[basename(dirname(__FILE__))]['timers'][$token] = microtime(true) + mt_rand(360, 8500);
55+
}
56+
if (isset($_SESSION[basename(dirname(__FILE__))][$token]) && count($_SESSION[basename(dirname(__FILE__))][$token])==0)
57+
unset($_SESSION[basename(dirname(__FILE__))][$token]);
58+
if (!isset($_SESSION[basename(dirname(__FILE__))][$token]) || !is_array($_SESSION[basename(dirname(__FILE__))][$token]) || isset($_REQUEST['reset']) || is_string($_SESSION[basename(dirname(__FILE__))][$token]) || !isset($_SESSION[basename(dirname(__FILE__))][$token]) || mt_rand($weights[0], $weights[1]) >= $weights[2]) {
59+
$_SESSION[basename(dirname(__FILE__))][$token] = array();
60+
foreach($elements as $key)
61+
{
62+
mt_srand(mt_rand(-microtime(true), microtime(true)));
63+
mt_srand(mt_rand(-microtime(true), microtime(true)));
64+
mt_srand(mt_rand(-microtime(true), microtime(true)));
65+
$decimals = explode('', str_replace(array(' ', '.'), '', microtime(false)));
66+
shuffle($decimals);
67+
$decalpha = implode("", $decimals);
68+
shuffle($decimals);
69+
$decomega = implode("", $decimals);
70+
$points = $colour = array();
71+
foreach($nodes as $node) {
72+
$colour[$key]['red'] = (float)mt_rand((float)$reds[0].(!strpos($reds[0], '.')?".$decomega":""), (float)$reds[1].(!strpos($reds[1], '.')?".$decalpha":""));
73+
$colour[$key]['green'] = (float)mt_rand((float)$greens[0].(!strpos($greens[0], '.')?".$decomega":""), (float)$greens[1].(!strpos($greens[1], '.')?".$decalpha":""));
74+
$colour[$key]['blue'] = (float)mt_rand((float)$blues[0].(!strpos($blues[0], '.')?".$decomega":""), (float)$blues[1].(!strpos($blues[1], '.')?".$decalpha":""));
75+
$points[$key]['1st'] = (float)mt_rand((float)$firsts[0].(!strpos($firsts[0], '.')?".$decomega":""), (float)$firsts[1].(!strpos($firsts[1], '.')?".$decalpha":""));
76+
$points[$key]['2nd'] = (float)mt_rand((float)$seconds[0].(!strpos($seconds[0], '.')?".$decomega":""), (float)$seconds[1].(!strpos($seconds[1], '.')?".$decalpha":""));
77+
$points[$key]['3rd'] = (float)mt_rand((float)$thirds[0].(!strpos($thirds[0], '.')?".$decomega":""), (float)$thirds[1].(!strpos($thirds[1], '.')?".$decalpha":""));
78+
$points[$key]['4th'] = (float)mt_rand((float)$forths[0].(!strpos($forths[0], '.')?".$decomega":""), (float)$forths[1].(!strpos($forths[1], '.')?".$decalpha":""));
79+
$colour[$key]['opacity'] = (float)round(mt_rand((float)$opacities[0].(!strpos($opacities[0], '.')?".$decomega":""), (float)$opacities[1].(!strpos($opacities[1], '.')?".$decalpha":"")) / mt_rand((float)$opacities[2].(!strpos($opacities[2], '.')?".$decomega":""), (float)$opacities[3].(!strpos($opacities[3], '.')?".$decalpha":"")), 11);
80+
81+
switch ($key){
82+
case 'box':
83+
if (strpos($node, '%s')>0 || in_array(substr($node, 0, 1), array('.', '#')))
84+
{
85+
$_SESSION[basename(dirname(__FILE__))][$token][$key][$node] = sprintf($node, $key) . ' {
86+
-webkit-box-shadow: ' . $points['box']['1st'] . 'px ' . $points['box']['2nd'] . 'px ' . $points['box']['3rd'] . 'px ' . $points['box']['4th'] . 'px rgba(' . $colour['box']['red'] . ', ' . $colour['box']['green'] . ', ' . $colour['box']['blue'] . ', ' . $colour['box']['opacity'] . ');
87+
-moz-box-shadow: ' . $points['box']['1st'] . 'px ' . $points['box']['2nd'] . 'px ' . $points['box']['3rd'] . 'px ' . $points['box']['4th'] . 'px rgba(' . $colour['box']['red'] . ', ' . $colour['box']['green'] . ', ' . $colour['box']['blue'] . ', ' . $colour['box']['opacity'] . ');
88+
box-shadow: ' . $points['box']['1st'] . 'px ' . $points['box']['2nd'] . 'px ' . $points['box']['3rd'] . 'px ' . $points['box']['4th'] . 'px rgba(' . $colour['box']['red'] . ', ' . $colour['box']['green'] . ', ' . $colour['box']['blue'] . ', ' . $colour['box']['opacity'] . ');
89+
}
90+
91+
';
92+
} else {
93+
$_SESSION[basename(dirname(__FILE__))][$token][$key][$node] = $node . ' {
94+
-webkit-box-shadow: ' . $points['box']['1st'] . 'px ' . $points['box']['2nd'] . 'px ' . $points['box']['3rd'] . 'px ' . $points['box']['4th'] . 'px rgba(' . $colour['box']['red'] . ', ' . $colour['box']['green'] . ', ' . $colour['box']['blue'] . ', ' . $colour['box']['opacity'] . ');
95+
-moz-box-shadow: ' . $points['box']['1st'] . 'px ' . $points['box']['2nd'] . 'px ' . $points['box']['3rd'] . 'px ' . $points['box']['4th'] . 'px rgba(' . $colour['box']['red'] . ', ' . $colour['box']['green'] . ', ' . $colour['box']['blue'] . ', ' . $colour['box']['opacity'] . ');
96+
box-shadow: ' . $points['box']['1st'] . 'px ' . $points['box']['2nd'] . 'px ' . $points['box']['3rd'] . 'px ' . $points['box']['4th'] . 'px rgba(' . $colour['box']['red'] . ', ' . $colour['box']['green'] . ', ' . $colour['box']['blue'] . ', ' . $colour['box']['opacity'] . ');
97+
}
98+
99+
';
100+
}
101+
break;
102+
case 'text':
103+
if (strpos($node, '%s')>0 || in_array(substr($node, 0, 1), array('.', '#')))
104+
{
105+
$_SESSION[basename(dirname(__FILE__))][$token][$key][$node] = sprintf($node, $key) . ' {
106+
text-shadow: ' . $points['text']['1st'] . 'px ' . $points['text']['2nd'] . 'px ' . $points['text']['3rd'] . 'px rgba(' . $colour['text']['red'] . ', ' . $colour['text']['green'] . ', ' . $colour['text']['blue'] . ', ' . $colour['text']['opacity'] . ');
107+
}
108+
109+
';
110+
} else {
111+
$_SESSION[basename(dirname(__FILE__))][$token][$key][$node] = $node . ' {
112+
text-shadow: ' . $points['text']['1st'] . 'px ' . $points['text']['2nd'] . 'px ' . $points['text']['3rd'] . 'px rgba(' . $colour['text']['red'] . ', ' . $colour['text']['green'] . ', ' . $colour['text']['blue'] . ', ' . $colour['text']['opacity'] . ');
113+
}
114+
115+
';
116+
}
117+
break;
118+
}
119+
}
120+
}
121+
}
122+
foreach(array_keys($_SESSION[basename(dirname(__FILE__))][$token]) as $key)
123+
echo implode("", $_SESSION[basename(dirname(__FILE__))][$token][$key]);
124+
exit(0);
125+
?>

assets/css/style.css

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
@CHARSET "ISO-8859-1";
2+
3+
body {
4+
font-family: "Labtop", "Trebuchet MS", Arial, Helvetica, sans-serif;
5+
font-size: 1.398633em;
6+
text-align:justify;
7+
}
8+
.main {
9+
font-family: "Labtop Thin" !important;
10+
font-size: 1.179894em;
11+
border:3px solid #000000;
12+
border-radius:15px;
13+
background-color:#feeebe;
14+
padding:39px 39px 39px 39px;
15+
margin:64px 64px 64px 64px;
16+
-webkit-box-shadow: 7px 7px 10px 0px rgba(108, 80, 99, 0.72);
17+
-moz-box-shadow: 7px 7px 10px 0px rgba(108, 80, 99, 0.72);
18+
box-shadow: 7px 7px 10px 0px rgba(108, 80, 99, 0.72);
19+
}
20+
h1 {
21+
font-family: "Labtop Superwide Boldish" !important;
22+
font-weight:bold;
23+
font-size:1.456554em;
24+
background-color:#FFEED9;
25+
border-radius:15px;
26+
padding:10px 10px 10px 10px;
27+
text-shadow: 4px 4px 2px rgba(150, 150, 150, 1);
28+
}
29+
h2 {
30+
font-family: "Labtop Bold" !important;
31+
font-weight:500;
32+
font-size:1.2495em;
33+
text-shadow: 4px 4px 2px rgba(150, 150, 150, 1);
34+
}
35+
blockquote {
36+
margin-left:25px;
37+
margin-right:25px;
38+
font-family: "Prestige Elite", "Courier New", Courier, monospace !important;
39+
font-size: 0,844441em;
40+
margin-bottom:25px;
41+
padding: 25px 25px 25px 25px;
42+
border:dotted;
43+
background-color:#fefefe;
44+
-webkit-box-shadow: 7px 7px 10px 0px rgba(108, 80, 99, 0.72);
45+
-moz-box-shadow: 7px 7px 10px 0px rgba(108, 80, 99, 0.72);
46+
box-shadow: 7px 7px 10px 0px rgba(108, 80, 99, 0.72);
47+
-webkit-border-radius: 14px;
48+
-moz-border-radius: 14px;
49+
border-radius: 14px;
50+
text-shadow: 2px 2px 2px rgba(103, 87, 101, 0.82);
51+
}
52+
p {
53+
font-family: "Labtop", "Trebuchet MS", Arial, Helvetica, sans-serif;
54+
font-size:1.43525em;
55+
margin-bottom:12px;
56+
}
57+
58+
input, button, textarea, radio, select, label
59+
{
60+
font-family: "Prestigue Elite Bold" !important;
61+
font-size:1.211115em;
62+
margin: 3px;
63+
-webkit-border-radius: 4px;
64+
-moz-border-radius: 4px;
65+
border-radius: 4px;
66+
}
67+
68+
.help-title-text
69+
{
70+
font-family: "Labtop Bold Italics" !important;
71+
font-weight:300;
72+
font-size:0.8761145em;
73+
margin-top: 6px;
74+
color: rgb(0,120,0) !important;
75+
}
76+
77+
.help-url-example
78+
{
79+
font-family: "Prestige Elite Bold" !important;
80+
font-weight:600;
81+
font-size:0.6781115em;
82+
margin-top: 3px;
83+
}

assets/images/logo_350x350.png

59.6 KB
Loading

assets/images/logo_500x500.png

98.8 KB
Loading

assets/jquery/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<script>history.go(-1);</script>

assets/jquery/jquery.js

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/jquery/plugins/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<script>history.go(-1);</script>

0 commit comments

Comments
 (0)