Initial commit, added files
This commit is contained in:
commit
d8119a52aa
7330 changed files with 219373 additions and 0 deletions
99
support/csshover.htc
Executable file
99
support/csshover.htc
Executable file
|
|
@ -0,0 +1,99 @@
|
|||
<attach event="ondocumentready" handler="parseStylesheets" />
|
||||
<script language="JScript">
|
||||
/**
|
||||
* HOVER - V1.00.031224 - whatever:hover in IE
|
||||
* ---------------------------------------------
|
||||
* Peterned - http://www.xs4all.nl/~peterned/
|
||||
* (c) 2003 - Peter Nederlof
|
||||
*
|
||||
* howto: body { behavior:url("csshover.htc"); }
|
||||
* ---------------------------------------------
|
||||
*/
|
||||
|
||||
var CSSBuffer, doc = window.document;
|
||||
|
||||
function parseStylesheets() {
|
||||
var rules, sheet, sheets = doc.styleSheets;
|
||||
var bufferIndex = sheets.length;
|
||||
var head = doc.getElementsByTagName('head')[0];
|
||||
var buffer = doc.createElement('style');
|
||||
|
||||
buffer.setAttribute('media', 'screen');
|
||||
buffer.setAttribute('type', 'text/css');
|
||||
head.appendChild(buffer);
|
||||
CSSBuffer = sheets[bufferIndex];
|
||||
|
||||
for(var i=0; i<sheets.length -1; i++) {
|
||||
sheet = sheets[i];
|
||||
if(!sheet.media || sheet.media == 'screen') {
|
||||
rules = sheet.rules;
|
||||
for(var j=0; j<rules.length; j++) {
|
||||
parseCSSRule(rules[j]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
function parseCSSRule(rule) {
|
||||
var select = rule.selectorText, style = rule.style.cssText;
|
||||
if(!select || !style || select.indexOf(':hover') < 0) return;
|
||||
var newSelect = select.replace(/\:hover/g, '.onHover');
|
||||
CSSBuffer.addRule(newSelect, style);
|
||||
|
||||
var affected = select.replace(/\:hover.*$/g, '');
|
||||
var elements = getElementsBySelect(affected);
|
||||
for(var i=0; i<elements.length; i++) {
|
||||
if(elements[i].nodeName == 'A') continue;
|
||||
new HoverElement(elements[i]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* HoverElement
|
||||
* -------------------------
|
||||
* applies the hover
|
||||
*/
|
||||
|
||||
function HoverElement(element) {
|
||||
if(element.isHoverElement) return;
|
||||
element.isHoverElement = true;
|
||||
element.attachEvent('onmouseover',
|
||||
function() { element.className += ' onHover'; });
|
||||
|
||||
element.attachEvent('onmouseout',
|
||||
function() { element.className = element.className.replace(/onHover/g, ''); });
|
||||
}
|
||||
|
||||
/**
|
||||
* domFinder
|
||||
* -----------------------------------
|
||||
* returns list of elements based on css selector
|
||||
*/
|
||||
|
||||
function getElementsBySelect(rule) {
|
||||
var nodeList = [doc], sets = rule.split(' ');
|
||||
for(var i=0; i<sets.length; i++) {
|
||||
nodeList = domFinder.filterNodes(sets[i], nodeList);
|
||||
} return nodeList;
|
||||
}
|
||||
|
||||
var domFinder = {
|
||||
findNodes:function(tag, docs) {
|
||||
var res, nodes = [];
|
||||
for(var i=0; i<docs.length; i++) {
|
||||
res = docs[i].getElementsByTagName(tag);
|
||||
for(var j=0; j<res.length; j++) nodes[nodes.length] = res[j];
|
||||
} return nodes;
|
||||
},
|
||||
|
||||
filterNodes:function(select, docs) {
|
||||
var filtered = [], nodes,rule,atr,s = (/#|\./).exec(select);
|
||||
if(!s) return this.findNodes(select, docs);
|
||||
nodes = this.findNodes((rule = select.split(s))[0], docs);
|
||||
atr = (s == '#')? 'id':'className';
|
||||
for(var i=0; i<nodes.length; i++) {
|
||||
if(new RegExp('(^|\\s)' + rule[1] + '(\\s|$)').exec(nodes[i][atr]))
|
||||
filtered[filtered.length] = nodes[i];
|
||||
} return filtered;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
23
support/fotografie_odkaz.php
Executable file
23
support/fotografie_odkaz.php
Executable file
|
|
@ -0,0 +1,23 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
|
||||
|
||||
<!--<strong>Fotogalerie</strong>-->
|
||||
<!--<br>
|
||||
<div align="center">
|
||||
<a href="../fotky/2008-tabor/21.php"><img src="../image/bannery/video_130x130px.jpg" border="0" alt="Last video" > </a></div>-->
|
||||
|
||||
|
||||
<div align="center">
|
||||
<a href="https://www.facebook.com/JSDHNS/" target="_blank">
|
||||
<img src="../image/facebook-sdhns.jpg" width="140px" border="0" alt="Facebook - SDH Nové Strašecí" />
|
||||
</a>
|
||||
</div
|
||||
|
||||
<br />
|
||||
<br />
|
||||
|
||||
|
||||
<div align="center">
|
||||
<a href="../jpo/pozary.php"><img src="../reklama/JPO-zasahy-2010.jpg" border="0" alt="Požáry"> </a></div>
|
||||
</div>
|
||||
|
||||
|
||||
9
support/prihlaseni.php
Executable file
9
support/prihlaseni.php
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
|
||||
<div id="formik">
|
||||
<div class="inside">
|
||||
<strong>Registrace:</strong><hr>
|
||||
<button name="registace" onclick="window.location.href = '../regsdhns/uvod.php'"; >Zaregistrovat</button><hr>
|
||||
<button name="prihlaseni" onclick="window.location.href = '../regsdhns/uvod.php'"; > Pøihlásit </button>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
233
support/sdh_ns.css
Executable file
233
support/sdh_ns.css
Executable file
|
|
@ -0,0 +1,233 @@
|
|||
/* CSS Document */
|
||||
|
||||
body
|
||||
{margin:0px;
|
||||
padding: 0px;
|
||||
font-family: Arial, Verdana, sans-serif;
|
||||
font-size: 12px;
|
||||
behavior: url(../support/csshover.htc);
|
||||
}
|
||||
#strana
|
||||
{width:800px;
|
||||
margin-top: 5px;}
|
||||
|
||||
|
||||
|
||||
div#nav {float:right; background: black; border: 1px solid black; width:798px;}
|
||||
div#nav ul {margin: 0; padding: 0; background: gray; border: 1px solid black; border-width: 0 1px;}
|
||||
div#nav li {position: relative; list-style: none; margin: 0;
|
||||
float: left; width: 7.2em; border-bottom: 1px solid black;}
|
||||
div#nav li:hover {background: salmon; color:black;}
|
||||
|
||||
div#nav li.submenu:hover {background: red url(../image/redpozadi.gif) repeat-x; }
|
||||
div#nav li a {display: block; padding: 0.5em 0.1em ;
|
||||
text-decoration: none; width: 7.2em; color:white; font-weight: bold; }
|
||||
div#nav>ul a {width: auto;}
|
||||
div#nav ul ul {position: absolute; width: 7.2em; display: none;}
|
||||
|
||||
div#nav ul.level1 li.submenu:hover ul.level2,
|
||||
div#nav ul.level2 li.submenu:hover ul.level3 {display:block;}
|
||||
div#nav ul.level2 {top: 2.2em; left: -1px; margin-top: 2px;}
|
||||
div#nav ul.level3 {top: -1px; left: 7em; border-top: 1px solid #CCC;}
|
||||
.ws2 {word-spacing: -2px;}
|
||||
|
||||
|
||||
|
||||
|
||||
#image_ns
|
||||
{width:801px;
|
||||
height: 120px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
background-image: url("../image/hasici_menu.jpg");
|
||||
background-repeat: no;
|
||||
}
|
||||
|
||||
|
||||
#navigace_sdh
|
||||
{text-align:right;
|
||||
font-size: 13px;
|
||||
color: white;
|
||||
margin:0px;
|
||||
padding-top:98px;
|
||||
}
|
||||
|
||||
#navigace_sdh a
|
||||
{
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
width:130%;
|
||||
padding: .3em .4em;
|
||||
_padding: .5em .4em;
|
||||
text-decoration:none;
|
||||
}
|
||||
#navigace_sdh a:hover
|
||||
{
|
||||
color: black;
|
||||
background-color:silver;
|
||||
}
|
||||
|
||||
#formik
|
||||
{
|
||||
background-color: #eeeeee;
|
||||
border:1px solid black;
|
||||
|
||||
width:120px;
|
||||
_width:126px;
|
||||
color: black;
|
||||
text-align:center;
|
||||
|
||||
vertical-align: middle;
|
||||
font-size:10px;
|
||||
}
|
||||
|
||||
|
||||
#formik .inside
|
||||
{margin:0px;
|
||||
padding: .4em ;
|
||||
}
|
||||
#formik a
|
||||
{color: black;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#vlevo
|
||||
{background-color:white;
|
||||
width:140px;
|
||||
border: 0px solid silver;
|
||||
float: left;
|
||||
text-align: left;
|
||||
background-image:url("../image/pozadi_stranek_inv.jpg");
|
||||
background-repeat:repeat-x;
|
||||
|
||||
}
|
||||
#stred
|
||||
{
|
||||
width: 490px;
|
||||
text-align:left;
|
||||
border: 0px solid silver;
|
||||
background-image:url("../image/pozadi_stranek_inv.jpg");
|
||||
background-repeat:repeat-x;}
|
||||
|
||||
#vpravo
|
||||
{background-image:url("../image/pozadi_stranek_inv.jpg");
|
||||
background-repeat:repeat-x;
|
||||
width: 140px;
|
||||
float: right;
|
||||
text-align:left;
|
||||
border: 0px solid red;}
|
||||
|
||||
#vpravo p
|
||||
{margin:10px 0 10px 0;}
|
||||
|
||||
#paticka
|
||||
{background-image:url("../image/paticka.jpg");
|
||||
width: 801px;
|
||||
height:28px;
|
||||
clear:both;
|
||||
margin-top: 1em;
|
||||
text-align:right;
|
||||
border: 1px solid red;
|
||||
vertical-align: middle;
|
||||
border: 1px solid black; }
|
||||
|
||||
#paticka .inside
|
||||
{padding: .6em;}
|
||||
|
||||
#paticka a
|
||||
{font-weight: bold;
|
||||
color: white;}
|
||||
#paticka a:hover
|
||||
{color: #333333;}
|
||||
|
||||
.inside
|
||||
{
|
||||
/*padding: .2em;
|
||||
line-height: 1.2em;*/
|
||||
padding: .2em;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.inside1
|
||||
{
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
.odsazeni
|
||||
{
|
||||
/*text-indent:1.5em;*/
|
||||
}
|
||||
|
||||
button
|
||||
{font-size: 11px;
|
||||
}
|
||||
|
||||
|
||||
#submenu a
|
||||
{
|
||||
background-color:#990000;
|
||||
display:block;
|
||||
height: 1.5em;
|
||||
width: 115px;
|
||||
_width: 120px;
|
||||
padding:.3em;
|
||||
margin: .2em;
|
||||
color:white;
|
||||
border: 1px solid black;
|
||||
font-weight:bold;
|
||||
text-decoration:none;}
|
||||
|
||||
#submenu a:hover
|
||||
{
|
||||
background-color: #666666;
|
||||
|
||||
color: #FFFFCC;}
|
||||
|
||||
hr.cleaner {
|
||||
clear:both;
|
||||
height:1px;
|
||||
margin: 0; padding:0;
|
||||
border:none;
|
||||
visibility: hidden;
|
||||
}
|
||||
.tvlevo
|
||||
{text-align: left;}
|
||||
.stred
|
||||
{text-align: center;}
|
||||
.tp
|
||||
{padding-top: .5em;}
|
||||
|
||||
.f11 {font-size: 11px;}
|
||||
.bddole
|
||||
{
|
||||
border-bottom: 1px solid red;
|
||||
}
|
||||
.p0{padding:0px;}
|
||||
a {color:#333333;
|
||||
font-weight: bold;}
|
||||
a:hover {color:red;}
|
||||
h4 {font-size: 18px; color:darkred; line-height:1.2em;}
|
||||
|
||||
.fotky {background-image:url("../image/bg_foto.gif"); margin: 7px; _margin:8px; float:left; height:140px; width:140px; }
|
||||
.fotky img {border:0px solid black; width:120px; padding: 30px 10px;}
|
||||
|
||||
.fotky_v {background-image:url("../image/bg_foto.gif"); margin: 7px; _margin:8px;
|
||||
float:left; height:140px; width:140px; }
|
||||
.fotky_v img {border:0px solid black; height:120px; padding: 10px 30px;}
|
||||
|
||||
.fotky_jun {background-image:url("../image/pozadi_foto_jun.jpg");
|
||||
background-repeat:no-repeat;
|
||||
float:left; height:220px; width:160px;
|
||||
text-align:center;
|
||||
font-weight:bold;
|
||||
color:black;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.fotky_jun img {border:1px solid black;}
|
||||
|
||||
.small {font-size: 9px;}
|
||||
.tab_flame {background-image: url("../image/pozadi_tabulka.gif");
|
||||
background-position:up;
|
||||
background-repeat:repeat-x;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue