first commit

This commit is contained in:
alazhar
2020-01-02 22:20:31 +07:00
commit 10eb3340ad
5753 changed files with 631345 additions and 0 deletions

View File

@ -0,0 +1 @@
<html><body bgcolor="#FFFFFF"></body></html>

View File

@ -0,0 +1,19 @@
/*
# SP News Highlighter Module by JoomShaper.com
# --------------------------------------------
# Author JoomShaper http://www.joomshaper.com
# Copyright (C) 2010 - 2012 JoomShaper.com. All Rights Reserved.
# License - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: http://www.joomshaper.com
*/
.sp_news_higlighter{position:relative}
.sp-nh-buttons{float:left;position:relative}
.sp-nh-item{overflow:hidden;position:relative}
span.sp-nh-text{margin:0 0 0 5px}
span.sp-nh-title{margin-right:5px}
span.sp-nh-date{font-size:70%;font-style:italic}
.sp-nh-prev,.sp-nh-next{background-repeat:no-repeat;cursor:pointer;position:absolute;top:0;width:13px}
.sp-nh-prev{background-position:0 50%;right:20px}
.sp-nh-next{background-position:-26px 50%;right:5px}
.sp-nh-prev:hover{background-position:-13px 50%}
.sp-nh-next:hover{background-position:-39px 50%}

View File

@ -0,0 +1,20 @@
<?php
header("Content-Type: text/css");
$uniqid = $_GET['uniqid'];
$width = $_GET['width'];
$height = $_GET['height'];
$linkcolor = $_GET['linkcolor'];
$linkhover = $_GET['linkhover'];
$arrows = $_GET['arrows'];
?>
.button_area {float:left;position:relative}
span.text {margin:0 0 0 5px;}
span.title{margin-right:5px;}
span.date {font-size:70%;font-style:italic;}
a.news_link {color:#<?php echo $linkcolor; ?>}
a.news_link:hover {color:#<?php echo $linkhover; ?>}
.sp-nh-prev,.sp-nh-next{width: 13px; height: <?php echo $height; ?>px; position: absolute; top:0;cursor:pointer;background-image: url(../images/<?php echo $arrows; ?>);background-repeat:no-repeat;}
.sp-nh-prev{right:20px; background-position: 0 50%;}
.sp-nh-next{right:5px; background-position: -26px 50%;}
.sp-nh-prev:hover{background-position: -13px 50%;}
.sp-nh-next:hover{background-position: -39px 50%;}