House M.D.

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » House M.D. » Архив » коды


коды

Сообщений 1 страница 12 из 12

1

..dreamsabouthappeness

0

2

хтмл верх

Код:
<script type="text/javascript">
var sex=document.getElementById('pun-main').getElementsByTagName("li")
var sx=0
for (sx=0; sx<=(sex.length-1); sx++)
{if (sex[sx].className=="pa-sex")
{if (sex[sx].innerHTML.indexOf("Мужской")!=-1)
{sex[sx].innerHTML="Пол: "+"<img src='http://i43.tinypic.com/125on6e.gif' />"}
else if (sex[sx].innerHTML.indexOf("Женский")!=-1)
{sex[sx].innerHTML="Пол: "+"<img src='http://i39.tinypic.com/a3jk02.gif' />"}
}}
</script>

<script type="text/javascript">
if (document.URL.indexOf("viewtopic")!=-1)
{var sigs=document.getElementById('pun-main').getElementsByTagName("div")
var v=0
for (v=0; v<=(sigs.length-1); v++)
{if (sigs[v].className=="post-content")
{if (sigs[v].innerHTML.toLowerCase().indexOf("<span>подпись автора</span>")==-1)
{sigs[v].innerHTML=sigs[v].innerHTML+"<dl class='post-sig'><dt><span>Подпись автора</span></dt><dd><p>"+"<img src='http://s59.radikal.ru/i164/0809/48/1e0647dc44a1.gif' >"+"</p></dd></dl>"}}}}
</script>

<style type="text/css">
#pun-stats ul.container {
background-image:url(http://i34.tinypic.com/dq3u5z.png); padding-left:70px; height : 80px; background-repeat: no-repeat}
</style>

<style type="text/css">
#pun-title TABLE, #pun-title h1{
  background: none;
}
#pun-title, #pun-title .container {
  background-image: url(http://i38.tinypic.com/zj9onk.png);background-repeat:no-repeat ; height: 400px;
  }
</style>

<style>
.punbb .quote-box, .punbb .code-box {
  background-color: transparent;
  background-image: url("http://www.10pix.ru/img1/4865/80419.jpg");
  color:  #000000
  }
</style>

<script type="text/javascript">
if (document.URL.indexOf("viewtopic.php")!=-1){document.write('<scr' + 'ipt src="http://i.rusff.me/f/ru/rusff/topicsReps.js" type="text/javascript"></scr' + 'ipt>');
var smileDiv = document.getElementById("smilies-block");
if(smileDiv)
{
var smileItem = new Array();
smileItem.push('http://i.rusff.me/f/ru/rusff/rusff_smile_flag.gif');
smileItem.push('http://i.rusff.me/f/ru/rusff/184369b00dfe.gif');
smileItem.push('http://i.rusff.me/f/ru/rusff/4fefa225ec9d.gif');
smileItem.push('http://i.rusff.me/f/ru/rusff/7d24c00c4a99.gif');

for (i=0; i<smileItem.length; i++){
smileDiv.innerHTML+='<img src="'+smileItem[i]+'" alt=":rusff:" onclick="smile(\'[img]'+smileItem[i]+'[/img]\')" />';
}
}
}
</script>


<script 
language="Javascript"> 
var rate = 20; 
var obj; 
var act = 0; 
var elmH = 0; 
var elmS = 128; 
var elmV = 255; 
var clrOrg; 
var TimerID; 
if (navigator.appName.indexOf("Microsoft",0) != -1 && parseInt(navigator.appVersion) >= 4) { 
Browser = true; 
} else { 
Browser = false;} 
if (Browser) { 
document.onmouseover = doRainbowAnchor; 
document.onmouseout = stopRainbowAnchor;} 
function doRainbow(){ 
if (Browser && act != 1) { 
act = 1; 
obj = event.srcElement; 
clrOrg = obj.style.color; 
TimerID = setInterval("ChangeColor()",100);}} 
function stopRainbow(){ 
if (Browser && act != 0) { 
obj.style.color = clrOrg; 
clearInterval(TimerID); 
act = 0;}} 
function doRainbowAnchor(){ 
if (Browser && act != 1) { 
obj = event.srcElement; 
while (obj.tagName != "A" && obj.tagName != "BODY") { 
obj = obj.parentElement; 
if (obj.tagName == "A" || obj.tagName == "BODY") 
break;} 
if (obj.tagName == "A" && obj.href != "") { 
act = 1;//osw 
clrOrg = obj.style.color; 
TimerID = setInterval("ChangeColor()",100);}}} 
function stopRainbowAnchor(){ 
if (Browser && act != 0) { 
if (obj.tagName == "A") { 
obj.style.color = clrOrg; 
clearInterval(TimerID); 
act = 0;}}} 
function ChangeColor(){ 
obj.style.color = makeColor();} 
function makeColor(){ 
if (elmS == 0) { 
elmR = elmV; elmG = elmV; elmB = elmV;} 
else { 
t1 = elmV; 
t2 = (255 - elmS) * elmV / 255; 
t3 = elmH % 60; 
t3 = (t1 - t2) * t3 / 60; 
if (elmH < 60) { 
elmR = t1; elmB = t2; elmG = t2 + t3;} 
else if (elmH < 120) { 
elmG = t1; elmB = t2; elmR = t1 - t3;} 
else if (elmH < 180) { 
elmG = t1; elmR = t2; elmB = t2 + t3;} 
else if (elmH < 240) { 
elmB = t1; elmR = t2; elmG = t1 - t3;} 
else if (elmH < 300) { 
elmB = t1; elmG = t2; elmR = t2 + t3;} 
else if (elmH < 360) { 
elmR = t1; elmG = t2; elmB = t1 - t3;} 
else { 
elmR = 0; elmG = 0; elmB = 0;}} 
elmR = Math.floor(elmR);//fantasyflash.ru 
elmG = Math.floor(elmG); 
elmB = Math.floor(elmB); 
clrRGB = "#" + elmR.toString(16) + elmG.toString(16) + elmB.toString(16); 
elmH = elmH + rate; if (elmH >= 360) elmH = 0; 
return clrRGB;}</script>






<style type="text/css">
#pun-announcement h2 {display: none}
#pun-announcement .container {padding-top: 1em}
</style>
<script>
var tit = document.title;
var c = 0;

function writetitle() {
  document.title = tit.substring(0,c);
  if(c==tit.length) {
    c = 0;setTimeout("writetitle()", 3000)
  } else {
    c++;
    setTimeout("writetitle()", 200)
  }
}
writetitle()
</script>

<small><style type="text/css">
#pun #pun-viewtopic #pun-main #post-form #post fieldset .hashelp .required .input #main-reply {background-image: url("http://i35.tinypic.com/2ajx4ya.png");}


</style>














<HEAD>
<link href="http://i38.tinypic.com/rr4mfd.png" rel=icon type=image/x-icon>

<BODY style="background-attachment: fixed" background="http://i31.tinypic.com/2ex57wz.jpg">
<center>

<HTML>
<HEAD>
<TITLE> [..dreamsabouthappeness] </TITLE>
<STYLE type=text/css>

BODY{margin:10px;margin-top:10px;margin-bottom:10px;font-family:Verdana;}
td{font-family:Verdana;}

.font1{font-size:12px;COLOR:#b2b2b2;}
.font2{font-size:11px;font-weight:400;COLOR:#b2b2b2;}
.font3{font-size:11px;font-weight:700;COLOR:#b2b2b2;}
.font4{font-size:15px;COLOR:#b2b2b2;}
.font5{font-size:11px;font-weight:500;COLOR:#b2b2b2;}
.font6{font-size:12px;font-weight:700;COLOR:м; LETTER-SPACING: 1px}

a:link{color:#b2b2b2;text-decoration:none;}
a:visited{color:#b2b2b2;text-decoration:none;}
a:hover{color:#b2b2b2;text-decoration:underline;}

tr.font3 {HEIGHT: 28px;BACKGROUND-IMAGE: url('http://i30.tinypic.com/idhn3r.jpg')













);}
tr.font5 {HEIGHT: 28px;FONT-WEIGHT:700;BACKGROUND-IMAGE: url('http://i30.tinypic.com/idhn3r.jpg');}
tr.font6 {HEIGHT: 28px;}

input,select,textarea{font-size:11px;font-family:Verdana;}
textarea{width:100%;height:120;}
input,select,textarea{font-size:11px;font-family:Verdana;}
</STYLE>
</HEAD>

<br><center>
<table valign="top" width="














310" border="0" cellspacing="0" cellpadding="0"> 
<TR valign="top" width="710" ><TD height =100% width=0 valign="top"> 

<table bgColor=#b2b2b2 valign="top" cellspacing="0" cellpadding="1"><tr valign="top"><td width="




















410px" Height="2508px" valign="top"> 
<div class='sidebar'> 
<span class='desc'> 
</a>

<Center><br><img src="http://i37.tinypic.com/2it0i0x.png"></br><br>














































 
<div class="maintitle"> 
</div> 
<font size=1><b><font color=939496>






















Доброго времени суток! :)</i><br>Вы попали на ролевую с эксклюзивным сюжетом - <b><font color=c9c5c5
 size=1 font-family:calibri><br>Twilight: Dreams about happeness..</font></b><br>Может для кого-то это обыкновенная ролевая с очередным банально-вычитанным сюжетом... Однако тут Вы глубоко ошибетесь! Наша главная ценность - уникальная изюминка. Мы Вам гарантируем качественную игру и приятное настроение <img src='http://www.yoursmileys.ru/msmile/fun/m0178.gif' ><br> 









На форуме есть <a href="http://eclipseoftwilight.rolka.su/viewtopic.php?id=490#p16130"><font color=c9c5c5><u>навигатор</font></u></a>, который позволит Вам с легкостью переходить к наиболее важным темам. <br><br> 
Интересующие вопросы Вы сможете задать администрации в специальной <a href="http://eclipseoftwilight.rolka.su/viewtopic.php?id=492#p16133"><font color=c9c5c5><u>теме</font></u></a>.  
<br>Рейтинг игры: <font color=c9c5c5>NC-17.</font><br> 
<b><i>Приятной игры!</i></b><br> 
<form style='display:inline' action="http://z8.invisionfree.com/IFYOUCAN/index.php?act=Login&CODE=01&CookieDate=1" method="post"> 
<br /><br><br> 

<div class="maintitle"> 
</div> 
<div class="tablepad"><span class='desc' > 
<center><img src="

















http://i27.tinypic.com/x68gi.png"></center></br> 
<form> 
<select name="select" class="forminput" onchange="location.href=(form.select.options[form.select.selectedIndex].value)"> 
<option>.|клик-клик xD</option> 
<option value="http://eclipseoftwilight.rolka.su/viewtopic.php?id=2"><small>• устав роты</small></option> 
<option value="http://eclipseoftwilight.rolka.su/viewtopic.php?id=173"><small>• они нужны нам, словно воздух</small></option> 
<option value="http://eclipseoftwilight.rolka.su/viewtopic.php?id=14"><small>• stop ! внеха не может быть твоей! </small></option> 
<option value="http://eclipseoftwilight.rolka.su/viewtopic.php?id=5#p8"><small>• оставь заявку на рассмотрение зверям</small></option> 
<option value="http://eclipseoftwilight.rolka.su/viewtopic.php?id=424#p16132"><small>• 1000 жизней в твоих руках . сюжет</small></option> 
<option value="http://eclipseoftwilight.rolka.su/viewforum.php?id=20"><small>• реклама . двигаем процесс</small></option> 
<option value="http://eclipseoftwilight.rolka.su/viewtopic.php?id=491#p16131"><small>• коротко о главном</small></option> 
<option value="http://eclipseoftwilight.rolka.su/viewtopic.php?id=487"><small>• как гром среди ясного неба!</small></option> 

</select> 
</form> 
</span> 
</span></div> 
</div> 
<br /><br> 
<br>

<div class="maintitle"> 
</div> 
<div class="tablepad"><span class='desc' > 
<center><img src="


















http://i32.tinypic.com/2zoagao.png" border="0"></center> 
<br><br><font color=939496><ul><font color=c9c5c5 size=2>События на форуме:</font> наше личико стало ещё краше! Мы сменили дизайн!)) Все приветствуем его. Ежели он Вам чем-то не угодил или же он запал вам в душу [чтож...на вкус и цвет, как говорится..], отписываемся <a href="http://eclipseoftwilight.rolka.su/viewtopic.php?id=476"><font color=c9c5c5><u>здесь</font></u></a> Как видите поменялась и главная картинка, и реклама полностью. Обновлен сюжет. Дорогие участники, которые до сих пор (!) не начали игру - начинайте. Не дай Бог, увижу кого-то завтра, кто не отписался Вы меня знаете, будет больно. xD </font>
<br> 
<br><font color=939496><font color=c9c5c5 size=2>События в игре: </font><small><b></b>[события в игре] Белла приезжает в школу и знакомится с Джессикой, в это время Элис посещает странное видение: Эдвард кусает невиданную ранее девушку.Прогуляв уроки, Розали и Эммет отправляются в Сиетл, счастливые улыбки исчезают с лциа после звонка взволнованной Элис: в городе Джейн. Молодые вампиры едут в поместье Калленов... Юная вампирша в это время идет на бейсбольное поле.Эльвира кусает человека... Оборотни собираются в школу.</small><br>
<b>Погода в Форксе:</b> моросит мелкий дождь, примерно +5. <img src='http://i36.tinypic.com/rjliz6.png' ><br> 
<b>Время:</b> День (12:00 - 15:00)</span> 
</div> 
</div> 
<br /> <center>

<div class="titlemedium"></div> 
<div class="tablepad"><span class='desc' > 
<img src="
















































http://i27.tinypic.com/15re2hg.png" border="0" ></a><br><br><br> 

<a href="http://eclipseoftwilight.rolka.su/profile.php?id=11" title="~ rosalie hale"><img src="http://i28.tinypic.com/23ur8xs.png" border="0" style="filter:alpha(opacity=20);-moz-opacity:0.6" onMouseover="makevisible(this,0)" onMouseout="makevisible(this,1)"></a><a href="http://eclipseoftwilight.rolka.su/profile.php?id=2" title="~ bella swan"><img src="http://i35.tinypic.com/2irrhgl.gif" border="0" style="filter:alpha(opacity=20);-moz-opacity:0.6" onMouseover="makevisible(this,0)" onMouseout="makevisible(this,1)"></a><br> 
<center>

<br> 
</span> 
</span></div> 
</div> 
<br > 

<div class="titlemedium"></div> 
<div class='tablepad'><span class='desc'> 
<br><br><img src="















































http://i26.tinypic.com/2vaze9w.png" border="0"></a></br> 
<b><font color=a18970 size=2><i><img src='http://i25.tinypic.com/2dcinoz.png' ></font></i></b>
<div class="maintitle"> 
</div> 
<br>
<img src="























http://i27.tinypic.com/mcdvl2.png" border="0"><br> 
<br> 
</center><ul>
<br>Оригинальная идея оформления форума была позаимствована у американских и итальянских форумов, базирующихся на <font color=cac6c6>© afterfate</font> и <font color=cac6c6>© invisionfree</font> хостингах, а так же у наших отечественных коллег. Графическое оформление подготовила <b><font color=cac6c6>Rosalie Hale</font></b> специально для нашей ролевой.<br> <br> 
<a href="http://i31.tinypic.com/xqf1u0.jpg" target="_blank"><img src="http://i29.tinypic.com/hv5p29.jpg" border="0" alt="~design by __jujnaja" width="210px"></a><br><br><center><img src='http://i27.tinypic.com/f0dzz6.png' ><br><img src='http://i31.tinypic.com/33z699t.png' ><br><b><i><br>PS:</i> "Я могу устоять против всего, кроме искушения..." (с) Оскар Уйальд.</b>












<div class="maintitle"> 
</div> 
<br></div> 
</left></td></tr></table></td> 

<td valign=top width=710> 
<table class="aa" bgColor="#cac9c9" cellspacing="2" cellpadding="0" width=710 align=left><TR><TD align=left></div> 
</div>

<HTML>
<HEAD>
<TITLE>~ twilight</TITLE>
<STYLE type=text/css>
BODY{margin:10px;margin-top:15px;margin-bottom:10px;}
td{font-family:Verdana;}









.font1{font-size:12px;}
.font2{font-size:11px;font-weight:400;}
.font3{font-size:11px;font-weight:700;}
.font4{font-size:15px;}
.font5{font-size:11px;font-weight:700;COLOR:#939393;}
.font6{font-size:11px;font-weight:700;}










a:link{color:#616263;text-decoration:none;}
a:visited{color:#d3d3d3;text-decoration:none;}







a:hover{color: #8a8a8a;text-decoration:underline;}






tr.font3 {HEIGHT: 28px;BACKGROUND-IMAGE: url(http://jpe.ru/gif/skin/fon31.gif);}
tr.font5 {HEIGHT: 30px;BACKGROUND-IMAGE: url(http://jpe.ru/gif/skin/fon41.gif);FONT-WEIGHT:700;}
tr.font6 {HEIGHT: 28px;BACKGROUND-IMAGE: url(http://jpe.ru/gif/skin/fon31.gif);}

input,select,textarea{font-size:11px;font-family:Verdana;}
textarea{width:100%;height:120;}
input.sender{background-color:#cac9c9;font-weight:700;border:1 outset rgb(0,0,0);}

</STYLE>
</HEAD>
<BODY bgColor=#cac9c9>

<TABLE bgColor=#cac9c9 cellSpacing=1 cellPadding=10 width=100% height=100% border=0>
<TR bgColor=#cac9c9><TD valign=top>
<TR>
<TD>
<table border=0 cellpadding=0 cellspasing=0 align=center BODY background="http://i30.tinypic.com/idhn3r.jpg">
<tr>
<td>

0

3

хтмл низ

Код:
<script type="text/javascript">
var we=document.getElementsByTagName("ul")
var x=0
for (x=0; x<=(we.length-1); x++)
{if (we[x].innerHTML.indexOf("pa-online")!=-1)
{we[x].innerHTML=we[x].innerHTML.substring(0, (we[x].innerHTML.indexOf("pa-online")-11))+"<img src='http://i35.tinypic.com/2zdx6e0.png' />"}
else if ((we[x].innerHTML.indexOf("pa-online")==-1)&&(we[x].innerHTML.indexOf("pa-author")!=-1))
{we[x].innerHTML=we[x].innerHTML+"<img src='http://i38.tinypic.com/21kices.png' />"}
}
</script>




<style>
BODY A{font-family : "Calibri";font-size: 4mm }
</style>





<script src="/export.php?type=js&max=10" type="text/javascript"></script>
<script type="text/javascript">
var html='';
var ts = '';
var mo = '';
var hh = '';
var mm = '';
var i = 0;
for(i=0;i<content.length;i++) {
	ts = new Date();
	ts.setTime(1000*content[i][0]);
	mo = ts.getMonth()+1;
	if (mo<10) mo='0'+mo;
	hh = ts.getHours();
	mm = ts.getMinutes()+'';
	if (mm<10) mm='0'+mm;
	ts = ts.getDate()+'.'+mo+' '+hh+':'+mm;
html2="</tr></tbody></table></div>"
html1="<h2>Последние 10 сообщений форума</h2><div class=\"container\"><table cellspacing=\"0\" width=100%><thead><tr><th scope=\"col\">Автор</th><th scope=\"col\">Время</th><th scope=\"col\">Последнее сообщение</th></tr></thead><tbody class=\"hasicon\">"
html+='<tr><td>'+content[i][1]+'</td><td class=\"tc2\">'+ts+'<td class=\"tcr\"><a href=\"'+content[i][2]+'\" target=\"_blank\">'+content[i][3]+'</a><br /></td></tr>';
}

var arr=document.getElementsByTagName("div")
i=0
str=document.URL
while(arr[i] ){
if((str.substring(str.lastIndexOf('/')+1)=="" || str.substring(str.lastIndexOf('/')+1)=="index.php") && arr[i].className=="statscon"){
name=arr[i].innerHTML
name=name.substring(0)
arr[i].innerHTML=""+html1+""+html+""+html2+"<br><h2>Общая статистика</h2>"+name+""
}
i++
}
</script>








<style type=text/css>
  .punbb .main .container, .punbb .section .container, .punbb .section .formal .container, .punbb .formal fieldset, #viewprofile li strong, #viewprofile li div, #setmods dd, .punbb .post-body, .punbb .post-links, .punbb .info-box, .punbb #pun-main .info-box .legend, .punbb .quote-box, .punbb .code-box {
    background: url(http://img0.liveinternet.ru/images/attach/b/3/12/710/12710157_1198763691_8096965_7262162_1194174708_12294890_12043414_14338134_miu2111111.jpg) transparent !important;
  }
.punbb td.tc2, .punbb td.tcr, .post-box, .punbb td.tcl, .punbb td.tc3  {
background: transparent;
}
</style>

<script>
<!--
indexof="Вселенная"
str = document.getElementById("navindex").innerHTML
pos = str.indexOf("Форум")
document.getElementById("navindex").innerHTML=str.substring(0,pos)+indexof+str.substring(pos+5,str.length-1)
-->
</script>
<script>
<!--
userof="Жители"
str = document.getElementById("navuserlist").innerHTML
if( (pos=str.indexOf("Участники")) != -1 )
document.getElementById("navuserlist").innerHTML=str.substring(0,pos)+userof+str.substring(pos+9,str.length-1)
-->
</script>
<script>
<!--
findof="Найди меня"
str = document.getElementById("navsearch").innerHTML
pos = str.indexOf("Поиск")
document.getElementById("navsearch").innerHTML=str.substring(0,pos)+findof+str.substring(pos+5,str.length-1)
-->
</script>
<script>
<!--
faseof="Личное дело"
str = document.getElementById("navprofile").innerHTML
pos = str.indexOf("Профиль")
document.getElementById("navprofile").innerHTML=str.substring(0,pos)+faseof+str.substring(pos+14,str.length-1)
-->
</script>
<script>
<!--
pismaof="Послания"
str = document.getElementById("navpm").innerHTML
pos = str.indexOf("Сообщения")
document.getElementById("navpm").innerHTML=str.substring(0,pos)+pismaof+str.substring(pos+9,str.length-1)
-->
</script>
<script>
<!--
godof="Админка"
str = document.getElementById("navadmin").innerHTML
pos = str.indexOf("Администрирование")
document.getElementById("navadmin").innerHTML=str.substring(0,pos)+godof+str.substring(pos+17,str.length-1)
-->
</script>
<script>
<!--
valiof="Покинуть нас =("
str = document.getElementById("navlogout").innerHTML
pos = str.indexOf("Выход")
document.getElementById("navlogout").innerHTML=str.substring(0,pos)+valiof+str.substring(pos+5,str.length-1)
-->
</script>
<script>
<!--
vxodiof="Я вернулся!"
str = document.getElementById("navlogin").innerHTML
pos = str.indexOf("Войти")
document.getElementById("navlogin").innerHTML=str.substring(0,pos)+vxodiof+str.substring(pos+5,str.length-1)
-->
</script>
<script>
<!--
regof="Стать одним из нас"
str = document.getElementById("navregister").innerHTML
pos = str.indexOf("Регистрация")
document.getElementById("navregister").innerHTML=str.substring(0,pos)+regof+str.substring(pos+18,str.length-1)
-->
</script>









<style>
.punbb table Div.icon {float: left; display: block; width:45px; height: 35px; border-style: none; background-image: url(http://i34.tinypic.com/34rslyh.png); background-repeat: no-repeat; position: relative; margin-right: 10px;}
TR.inew Div.icon {
background: url(http://i37.tinypic.com/3090ygh.png) no-repeat;}
TR.isticky Div.icon {
background: url(http://i35.tinypic.com/16c0zut.png) no-repeat;}
TR.iclosed Div.icon {
background: url(http://i37.tinypic.com/96hmag.png) no-repeat;}
TR.iredirect Div.icon {
background: url(http://i35.tinypic.com/103zrir.png) no-repeat;}
</style>






<BODY style="background-attachment: fixed" background="http://i31.tinypic.com/2ex57wz.jpg">
<center>

<center><img src='http://i30.tinypic.com/2qd97p0.png' ></center>

<br><br><marquee>
<a title="Каталог фэнтези сайтов Палантир" href='http://palantir.in/?from=7107' target='_blank'>	
<script type="text/javascript">
Md=document;Mnv=navigator;
Mrn=Math.random();Mn=(Mnv.appName.substring(0,2)=="Mi")?0:1;Mp=0;Mz="p="+Mp+"&";
Ms=screen;Mz+="wh="+Ms.width+'x'+Ms.height;My="<img src='http://palantir.in/count.php?id=7107&cid=concept_1.gif";My+="&cntc=none&rand="+Mrn+"&"+Mz+"&referer="+escape(Md.referrer)+'&pg='+escape(window.location.href);My+="'  alt='Palantir' title='Каталог фэнтези сайтов Палантир' border='0' width='88px' height='31px'>";Md.write(My);</script> <noscript><img src="http://palantir.in/count.php?id=7107&cid=concept_1.gif" alt='Palantir' title="Каталог фэнтези сайтов Палантир" border=0 width="88px" height="31px"></noscript>
</a>
<a href="http://top.roleplay.ru/5110" target="top_">
<img src="http://img.rpgtop.su/rpgtop2.gif" alt="Рейтинг Ролевых Ресурсов" border="0" width="88" height="31"></a> <a target="_blank" href="http://historyoftwilight.rolka.su/"><img src="http://s42.radikal.ru/i095/0901/04/c42ed077c71e.gif" width="88" height="31"></a> <a target="_blank" href="http://twilightedwardlovebella.rolka.su/"><img src="http://s41.radikal.ru/i092/0904/c8/3e55cb3ae5f0.gif" style='border: 1px solid #000000' width="88" height="31"></a> <a href="http://memoirs1.rolka.su/" target=_blank> <img src="http://i37.tinypic.com/2v1ogms.gif" title="Мемуары отцов и детей" border="0" width="88" height="31"></a></marquee>



<script language="JavaScript">
var str = new String(document.getElementById("navpm").innerHTML)
var str2 = new String(document.location)

if( (str.indexOf("(") != -1) && (str2.indexOf("messages.php") == -1) )
{
alert("Проверьте личку!")

}
</script>

0

4

форма ответа

Код:
<script>
function addSpoiler(str,from,internal){
var pos=0,pos2=0,newpos=0
if((pos=str.indexOf("[boomp3]",from))==-1) return str;
if((pos2=str.indexOf("[/boomp3]"),pos+8)==-1) return str;
newpos=str.indexOf("[boomp3]",pos+8)
if(newpos<pos2 && newpos!=-1) str=addSpoiler(str,pos+8,true)
if((pos2=str.indexOf("[/boomp3]",pos+8))==-1) return str;
str=str.substring(0,pos)+makeSpoiler(str.substring(pos+8,pos2))+str.substring(pos2+9,str.length)
if( str.indexOf("[boomp3]")!=-1 && internal==false) str=addSpoiler(str,0,false)
return str}

function makeSpoiler(txt){
txt="<br /><embed src=\"http://static.boomp3.com/player.swf?song="+txt+"\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"200\" height=\"20\" allowScriptAccess=\"always\" align=\"middle\"></embed><br />"
return txt}


if(document.URL.indexOf("viewtopic.php")!=-1){
elm=document.getElementById("pun-main").getElementsByTagName("div")
for(x in elm) if(elm[x].className=="post-content"){
var post=elm[x]
post.innerHTML=addSpoiler(post.innerHTML,0,false)}}
</script>






































<table><tr>
<td onclick="return changeVisibility('mycolor', this)"><img src="http://forum.mybb.ru/i/color_swatch.png" alt="Мои цвета" /></td></tr></table>
<div class="container" id="mycolor" style="display:none; width:400px">
	<table cellspacing="0">
<tr>
<td style="background-color: #FF6633" onclick="bbcode('[color=#FF6633]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #CC3300" onclick="bbcode('[color=#CC3300]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #660000" onclick="bbcode('[color=#660000]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #990066" onclick="bbcode('[color=#990066]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #FF3366" onclick="bbcode('[color=#FF3366]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #000066" onclick="bbcode('[color=#000066]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #003366" onclick="bbcode('[color=#003366]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #0033FF" onclick="bbcode('[color=#0033FF]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #00CC00" onclick="bbcode('[color=#00CC00]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #669966" onclick="bbcode('[color=#669966]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #006600" onclick="bbcode('[color=#006600]' '[/color]'); return changeVisibility('mycolor', this)"></td>

<td style="background-color: #FF6600" onclick="bbcode('[color=#FF6600]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #FF6600" onclick="bbcode('[color=#FF6600]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #FFD700" onclick="bbcode('[color=#FFD700]' '[/color]'); return changeVisibility('mycolor', this)"></td>
<td style="background-color: #666666" onclick="bbcode('[color=#666666]' '[/color]'); return changeVisibility('mycolor', this)"></td>
</tr>
	</table>
	</div>





















<style>
#form-buttons table, .punbb .formal textarea {width:99%}
#form-buttons td {padding:0; line-height:0; background-position:center; background-repeat:no-repeat}
#form-buttons td img {height:26px; width:100%}
#button-font {background-image:url('http://img100.imageshack.us/img100/7872/fontag6.png')}
#button-size {background-image:url('http://img233.imageshack.us/img233/8052/sizefontft7.png')}
#button-bold {background-image:url('http://img296.imageshack.us/img296/5051/boldew7.png')}
#button-italic {background-image:url('http://img233.imageshack.us/img233/9614/italwy4.png')}
#button-underline {background-image:url('http://img233.imageshack.us/img233/7743/underlineul7.png')}
#button-strike {background-image:url('http://img233.imageshack.us/img233/1989/97155150ze9.png')}
#button-left {background-image:url('http://img233.imageshack.us/img233/8444/leftalignxj8.png')}
#button-center {background-image:url('http://img296.imageshack.us/img296/9294/centeralignxq3.png')}
#button-right {background-image:url('http://img233.imageshack.us/img233/866/rightalignvo6.png')}
#button-link {background-image:url('http://img233.imageshack.us/img233/9210/urlpr3.png')}
#button-email {background-image:url('http://img233.imageshack.us/img233/533/mailta3.png')}
#button-image {background-image:url('http://img233.imageshack.us/img233/9349/piccr2.png')}
#button-hide {background-image:url('http://img100.imageshack.us/img100/1556/hideso3.png')}
#button-quote {background-image:url('http://img233.imageshack.us/img233/8871/quoterb4.png')}
#button-code {background-image:url('http://img120.imageshack.us/img120/2010/coderr7.png')}
#button-color {background-image:url('http://img120.imageshack.us/img120/2382/colorsln2.png')}
#button-smile {background-image:url('http://img233.imageshack.us/img233/1204/smiles2ud2.png')}
#button-keyboard {background-image:url('http://img233.imageshack.us/img233/673/keyboardae5.png')}
#button-imageup {background-image:url('http://img233.imageshack.us/img233/2074/loadimagelg9.png')}
</style>













<script language="JavaScript">
function popwnd()
{
var smiles = new Array

smiles.push("http://www.kolobok.us/smiles/standart/mosking.gif")
smiles.push("http://www.kolobok.us/smiles/standart/grin.gif")
smiles.push("http://www.kolobok.us/smiles/standart/smoke.gif")
smiles.push("http://www.kolobok.us/smiles/standart/boast.gif")
smiles.push("http://www.kolobok.us/smiles/standart/dirol.gif")
smiles.push("http://www.kolobok.us/smiles/standart/pleasantry.gif")
smiles.push("http://www.kolobok.us/smiles/standart/snooks.gif")
smiles.push("http://www.kolobok.us/smiles/standart/no2.gif")
smiles.push("http://www.kolobok.us/smiles/standart/secret.gif")
smiles.push("http://www.kolobok.us/smiles/standart/aggressive.gif")
smiles.push("http://www.kolobok.us/smiles/standart/not_i.gif")
smiles.push("http://www.kolobok.us/smiles/standart/blush.gif")
smiles.push("http://www.kolobok.us/smiles/standart/acute.gif")
smiles.push("http://www.kolobok.us/smiles/standart/fool.gif")
smiles.push("http://www.kolobok.us/smiles/standart/i-m_so_happy.gif")
smiles.push("http://www.kolobok.us/smiles/standart/swoon.gif")
smiles.push("http://www.kolobok.us/smiles/standart/party.gif")
smiles.push("http://www.kolobok.us/smiles/standart/beee.gif")
smiles.push("http://www.kolobok.us/smiles/standart/yu.gif")
smiles.push("http://www.kolobok.us/smiles/standart/friends.gif")
smiles.push("http://www.kolobok.us/smiles/standart/blum2.gif")
smiles.push("http://www.kolobok.us/smiles/standart/dntknw.gif")
smiles.push("http://www.kolobok.us/smiles/standart/punish.gif")
smiles.push("http://www.kolobok.us/smiles/standart/smile3.gif")
smiles.push("http://www.kolobok.us/smiles/standart/dance.gif")
smiles.push("http://www.kolobok.us/smiles/standart/bad.gif")
smiles.push("http://www.kolobok.us/smiles/standart/cray.gif")
smiles.push("http://www.kolobok.us/smiles/standart/wink3.gif")
smiles.push("http://www.kolobok.us/smiles/standart/sorry.gif")
smiles.push("http://www.kolobok.us/smiles/standart/kiss.gif")
smiles.push("http://www.kolobok.us/smiles/standart/good.gif")
smiles.push("http://www.kolobok.us/smiles/standart/yahoo.gif")
smiles.push("http://www.kolobok.us/smiles/standart/nea.gif")
smiles.push("http://www.kolobok.us/smiles/standart/rofl.gif")
smiles.push("http://www.kolobok.us/smiles/standart/derisive.gif")
smiles.push("http://www.kolobok.us/smiles/standart/lazy.gif")
smiles.push("http://www.kolobok.us/smiles/standart/thank_you.gif")
smiles.push("http://www.kolobok.us/smiles/standart/yes.gif")
smiles.push("http://www.kolobok.us/smiles/standart/dance4.gif")
smiles.push("http://www.kolobok.us/smiles/standart/yes3.gif")
smiles.push("http://www.kolobok.us/smiles/standart/drinks.gif")
smiles.push("http://www.kolobok.us/smiles/standart/clapping.gif")
smiles.push("http://www.kolobok.us/smiles/standart/blush2.gif")
smiles.push("http://www.kolobok.us/smiles/standart/pardon.gif")
smiles.push("http://www.kolobok.us/smiles/standart/swoon2.gif")
smiles.push("http://www.kolobok.us/smiles/standart/sad.gif")
smiles.push("http://www.kolobok.us/smiles/standart/don-t_mention.gif")
smiles.push("http://www.kolobok.us/smiles/standart/victory.gif")
smiles.push("http://www.kolobok.us/smiles/standart/scare2.gif")
smiles.push("http://www.kolobok.us/smiles/standart/yes2.gif")
smiles.push("http://www.kolobok.us/smiles/rpg/king.gif")
smiles.push("http://www.kolobok.us/smiles/rpg/butcher.gif")
smiles.push("http://www.kolobok.us/smiles/rpg/queen.gif")
smiles.push("http://www.kolobok.us/smiles/rpg/king2.gif")
smiles.push("http://www.kolobok.us/smiles/madhouse/suicide_fool-edit.gif")
smiles.push("http://www.kolobok.us/smiles/madhouse/man_in_love.gif")
smiles.push("http://www.kolobok.us/smiles/madhouse/girl_crazy.gif")
smiles.push("http://www.kolobok.us/smiles/madhouse/girl_wacko.gif")
smiles.push("http://www.kolobok.us/smiles/madhouse/dash2.gif")
smiles.push("http://www.kolobok.us/smiles/madhouse/wacko2.gif")
smiles.push("http://www.kolobok.us/smiles/madhouse/girl_hospital.gif")
smiles.push("http://www.kolobok.us/smiles/madhouse/mail1.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/curtsey.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/girl_blum2.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/girl_witch.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/give_heart.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/hysteric.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/girl_hide.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/parting.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/girl_dance.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/girl_cray.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/girl_sigh.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/feminist.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/give_rose.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/first_move.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/girl_in_love.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/girl_haha.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/girl_cray2.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/girl_impossible.gif")
smiles.push("http://www.kolobok.us/smiles/he_and_she/spruce_up.gif")
smiles.push("http://www.kolobok.us/smiles/light_skin/give_heart2.gif")
smiles.push("http://www.kolobok.us/smiles/other/spam.gif")
smiles.push("http://www.kolobok.us/smiles/big_madhouse/wacko3.gif")
smiles.push("http://www.kolobok.us/smiles/artists/vishenka/l_hug.gif")
smiles.push("http://www.kolobok.us/smiles/artists/vishenka/l_daisy.gif")
smiles.push("http://www.kolobok.us/smiles/user/KidRock_01.gif")
smiles.push("http://www.kolobok.us/smiles/user/KidRock_05.gif")
smiles.push("http://www.kolobok.us/smiles/user/KidRock_04.gif")
smiles.push("http://www.kolobok.us/smiles/user/moinmoin_01.gif")
smiles.push("http://www.kolobok.us/smiles/user/KidRock_02.gif")
smiles.push("http://www.kolobok.us/smiles/user/KidRock_07.gif")
smiles.push("http://www.kolobok.us/smiles/user/Rulezzz_07.gif")
smiles.push("http://www.kolobok.us/smiles/user/KidRock_06.gif")

var msg = new String("")
msg = "<html><head><TITLE><Смайлы></TITLE></head>rn"
msg += "<body bgcolor=#F5F5F5 >"
msg = msg + "<" + "script language="JavaScript">rn"

msg += "function insert_smile(a){rn"
msg += "txt = "[img]"+a.src+"[/img] ";rn"
msg += "window.opener. smile(txt);rn"
msg += "window.focus()rn"
msg += "return false}rn"

msg = msg + "</" + "script>rn"

i=0

msg += "<div style="width: 100%; text-align : justify;" >" 
while(smiles[i])
{
msg = msg + "<img src="" + smiles[i] + "" onclick="return insert_smile(this)" style="cursor: pointer">rn"
i++
}

msg += "</div><a href="" onclick="window.close()"><b>Закрыть окно</b></a>"
msg += "</BODY></html>";

popup = window.open("","popDialog","height=500,width=500, scrollbars=1")
popup.document.write(msg)
popup.document.close()

return false
}
</script>
<script type="text/javascript">
if(form=document.getElementById("form-buttons"))
form.getElementsByTagName("tr")[0].insertCell(17).innerHTML="<img  id="button-smiles" title="Смайлы" onclick="return popwnd()" src="/i/blank.gif" />"</script>
<script>
elm=document.getElementById("form-buttons").getElementsByTagName("tr")[0].getElementsByTagName("td")
i=0
while(elm[i])
{
  str=elm[i].innerHTML
  if(str.indexOf("i/smile.png")!=-1)
    elm[i].style.display='none'
  i++
}
</script>

0

5

объява

<img src='http://i36.tinypic.com/2njxap4.jpg' >

0

6

ксс стиль 1

Код:
<center><img src='http://i38.tinypic.com/2reoz8n.png' ></center>

/*************************************************************
A - SETUP
**************************************************************/

/* A1 Import the colour scheme
-------------------------------------------------------------*/

/* A1.1 */
  @import url(style_cs.css);

/* A2 Deal with browser defaults and wonkiness
-------------------------------------------------------------*/

/* A2.1 */
html, body {margin: 0; padding: 0}

/* A2.2 */
.punbb * {
  margin: 0
  }

/* A2.3 */
.punbb ul, .punbb dl, .punbb li, .punbb dd, .punbb dt {
  padding: 0;
  list-style: none;
  }

/* A2.4 */
.punbb img {
  border:none
  }

/* A2.5 */
.punbb .main table {
  table-layout: fixed;
  width: 100%;
  }

/* A2.6 */
.checkfield input[type="checkbox"], .radiofield input[type="radio"] {margin: 0 0.3em;}

/* A2.7 */
p[class="checkfield"] *,
div[class="checkfield"] *,
fieldset[class="radiofield"] * {
  height: 1.8em;
  vertical-align: middle
  }


 /* A3 Text setup
-------------------------------------------------------------*/

/* A3.1 */
body {
  font-size: 100.01%;
  }

/* A3.2 */
.punbb {
  font: normal 68.75% verdana, arial, helvetica, sans-serif;
  }

/* 3.3 */
.punbb textarea, .punbb input, .punbb select, .punbb optgroup {
  font: 1em verdana, arial, helvetica, sans-serif
  }

/* A3.4 */
.punbb h1, .punbb h2, .punbb h3, .punbb h4, .punbb table, .punbb th {
  font-size: 1em;
  font-weight: normal;
  }

/* A3.5 */
.punbb h1 span, .punbb h2 span, .punbb legend span {
  font-size: 1.1em;
  }

/* A3.6 */
.punbb pre {
  font: 1.1em/140% monaco, "bitstream vera sans mono", "courier new", courier, monospace
  }

/* A3.7 */
.punbb address, .punbb em {
  font-style: normal
  }

/* A3.8 */
.punbb .post-content em {
  font-style: italic
  }

/* A3.9 */
.punbb .post-content em.bbuline {
  font-style: normal;
  text-decoration: underline;
  }

/* A3.10 */
.punbb a {
  text-decoration: underline
  }

/* A3.11 */
.punbb optgroup {
  font-weight: bold;
  }


/* A4 Float clearing and hidden items
-------------------------------------------------------------*/

/* A4.1 */
#pun:after,
.punbb .container:after,
.punbb .post-links ul:after,
.punbb .main div.inline:after,
.punbb .post-box:after,
.punbb .linksb:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  overflow:hidden;
  line-height: 0.0;
  font-size: 0;
  }

/* A4.2 */
.acchide,
#pun-index #pun-main h1,
#pun-navlinks h2,
#pun-pagelinks h2,
#pun-status h2,
#pun-ulinks h2,
.punbb .forum h2,
.punbb .multipage .topic h2,
.punbb dl.post-sig dt span,
.punbb p.crumbs strong,
.punbb .divider hr,
.punbb .required label em,
.punbb .formsubmit label,
.punbb .submitfield label,
.punbb .modmenu label,
#pun-userlist .main h2 {
  font-size: 0;
  height: 0;
  width: 0;
  line-height: 0.0;
  position:absolute;
  left: -9999px;
  overflow: hidden
  }


/* A5 Basic page layout and borders
-------------------------------------------------------------*/

/* A5.1 */
#pun {
  margin: 30px;
  position: relative;
  }

/* A5.2 */
.punbb {
  float: left;
  width: 100%;
  height: auto;
  }

/* A5.3 */
#pun-redirect, #pun-maint {
  margin: 50px 20% 12px 20%;
  width: auto;
  float: none;
  }

/* A5.4 */
.punbb .section, .punbb .main {
  margin-bottom: 1em;
  }

/* A5.5 */
.punbb .category, .punbb .post {
  margin-top: 0.4em;
  }

/* A5.6 */
.punbb #pun-category1, .punbb .toppost, .punbb .topicpost {
  margin-top: 0;
  }

/* 5.7 */
#pun-post .topic {
  margin-top: 1em;
  }

/* A5.8 */
.punbb .section, .punbb .forum, .punbb .formal, .punbb .modmenu, .punbb .info,
.punbb .category, .punbb .post {
  border-style: none none solid none;
  border-width: 0px 0px 2px 0px
  }

/* A5.9 */
.punbb .container {
  border-style: solid;
  border-width: 1px;
  }

/* A5.10 */
.punbb .section h2, #pun-main h1, #pun-main h2, #pun-stats h2, #pun-debug h2 {
  padding: 0.5em 1em;
  border-style: none solid solid none;
  border-width: 0 1px 1px 0;
  }


/*************************************************************
B - MAIN CONTENT - GENERAL
**************************************************************/

/* B1 Parsed Content, Signatures and Scroll Boxes
-------------------------------------------------------------*/

/* B1.1 */
.punbb .post-content {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
  }

/* B1.2 */
.punbb .post-sig dt {
  display: block;
  border-top: 1px solid #888;
  width: 250px;
  margin: 5px 0;
  }

/* B1.3 */
.punbb .post-content p {
  margin: 0;
  padding: 0 0 1em 0;
  line-height: 150%;
  }

/* B1.4 */
.punbb .post-content img {
  vertical-align: text-bottom
  }

/* B1.5 */
.punbb .post-content img.postimg {
  vertical-align: middle;
  }

/* B1.6 */
.punbb .post-content .blockcode, .punbb .post-content blockquote {
  width: 100%;
  overflow: hidden;
  }

/* B1.7 */
.punbb .post-content .scrollbox {
  width: 100%;
  overflow: auto;
  }

/* B1.8 */
.punbb .post-content .quote-box, .punbb .post-content .code-box {
  margin: 0.4em 1.8em 1.4em 1.8em;
  padding: 1em;
  border-style: solid;
  border-width: 1px;
  }

/* B1.9 */
.punbb .quote-box cite, .punbb .code-box strong.legend {
  display: block;
  padding-bottom: 0.7em;
  font-size: 1.1em;
  font-weight: bold;
  font-style: normal;
  margin: 0;
  }

/* B2 Information boxes
-------------------------------------------------------------*/

/* B2.1 */
.punbb .info-box {
  padding: 1.1em 1.7em 1em 1.7em;
  border-style: solid;
  border-width: 1px;
  margin: 0 0 1.1em 0;
  }

/* B2.2 */
.punbb .info-box * {
  padding: 0 0 0.7em 0;
  }

/* B2.3 */
.punbb #pun-main .info-box .legend {
  font-size: 1.1em;
  font-weight: bold;
  }


/* B3 Pagination and posting links
-------------------------------------------------------------*/

/* B3.1 */
.punbb .linkst {
  float: left;
  position: relative;
  width: 100%;
  font-size: 1.1em;
  height: 0;
  }

/* B3.2 */
.multipage {
  margin-top: 3em;
  }

/* B3.3 */
.linkst .pagelink {
  position: absolute;
  top: -4em;
  left: 1em;
  width: 24em;
  }

/* B3.4 */
.linkst .postlink {
  position: absolute;
  top: -4em;
  right: 1em;
  width: 16em;
  text-align: right;
  font-weight: bold;
  }

/* B3.5 */
.punbb .linksb {
  text-align: right;
  padding: 0.4em 1em 0.5em 1em;
  font-size: 1.1em;
  }

/* B3.6 */
.linksb .pagelink {
  float: left;
  width: 24em;
  text-align: left;
  }

/* B3.7 */
.linksb .postlink {
  float: right;
  width: 16em;
  font-weight: bold
  }

/* B3.8 */
.subscribelink {
  clear:both;
  padding-top: 0.3em;
  padding-bottom: 0.5em;
  }


/*************************************************************
C - MAIN CONTENT - SPECIFIC
**************************************************************/

/* C1 Form layout
-------------------------------------------------------------*/

/* C1.1 */
.punbb .formal .container {
  padding: 1.7em 2.3em 1.1em 2.3em;
  }

/* C1.2 */
.punbb .formsubmit {
  padding: 0 0 0 1.7em;
  margin: 1em 0 0 0;
  }

/* C1.3 */
.punbb .formsubmit input, .punbb .formsubmit a, .punbb .formsubmit span {
  margin: 0 0.6em 0 0
  }

/* C1.4 */
.punbb fieldset {
  border-style: solid;
  border-width: 1px;
  padding: 0 18px 0 18px;
  margin: 0 0 1em 0
  }

/* C1.5 */
.punbb fieldset legend {
  padding: 0;
  margin: 0 0 0 11px;
  font-size: 1.1em
  }

/* C1.6 */
.punbb fieldset legend span {
  padding: 0 5px;
  margin: 0 0 0 -15px;
  }

/* C1.7 */
.punbb fieldset fieldset {
  border-style: none;
  margin: 0;
  padding: 0 0 8px 0
  }

/* C1.8 */
.punbb .fs-box {
  padding: 1em 0 0.8em 0;
  }

/* C1.9 */
.punbb .fs-box p, .punbb .fs-box fieldset {
  padding: 0 0 0.8em 0
  }

/* C1.10 */
.punbb .inline .inputfield, .punbb .inline .selectfield, .punbb .inline .passfield {
  float: left;
  margin-right: 1em;
  }

/* C1.11 */
.punbb .inline .infofield {
  clear:both
  }

/* C1.12 */
.punbb .datafield br {
  display: none
  }

/* C1.13 */
.punbb .required label, .punbb .datafield span.input {
  font-weight: bold
  }

/* C1.14 */
.punbb .datafield span.input a {
  font-weight: normal;
  }

/* C1.15 */
.punbb .areafield span.input, .punbb p.longinput span.input {
  display: block;
  padding: 0 12em 0 0;
  height: 100%; /* For IE */
  }

/* C1.16 */
.punbb textarea, .punbb .longinput input {
  width: 64%;
  margin: 0;
  }

/* C1.17 */
.punbb .hashelp {
  position: relative;
  }

/* C1.18 */
.punbb .helplinks {
  display: block;
  position: absolute;
  top: 1em;
  right: 0;
  font-weight: normal;
  width: 36%;
  }

/* c1.19 */
.punbb #profile .helplinks {
  top: 1.5em;
  }

/* C1.20 */
.punbb .helplinks span {
  display: block;
  padding-bottom: 0.2em;
  }

/* C1.21 */
#pun-post .formal .info-box li {
  padding-left: 4px;
  list-style-type: square;
  list-style-position: inside;
  line-height: 1.5;
  margin: 0;
  }


/* C2 Table layout
-------------------------------------------------------------*/

/* C2.1 */
.punbb .main .tcl {
  overflow: hidden;
  text-align: left;
  width: 50%;
  }

/* C2.2 */
.punbb .main .tc2, .punbb .main .tc3, .punbb .main .tcmod {
  text-align: center;
  width: 10%;
  }

/* C2.3 */
.punbb .main .tcr {
  overflow: hidden;
  text-align: left;
  width: 30%;
  }

/* C2.4 */
#pun-userlist .main .tcl,
#pun-searchtopics .main .tcl,
#pun-modviewforum .main .tcl {
  width: 40%
  }

/* C2.5 */
#pun-userlist .main .tc2,
#pun-searchtopics .main .tc2 {
  text-align: left;
  width: 20%;
  }

/* C2.6 */
#pun-debug table .tcl {
  width: 15%;
  white-space:normal;
  }

/* C2.7 */
#pun-debug .tcr {
  width: 90%;
  white-space: normal;
  }

/* C2.8 */
#pun-index .tcl h3 {
  font-size: 1.2em;
  font-weight: bold;
  }

/* C2.9 */
.punbb td span.youposted {
  font-weight: bold;
  margin-left: -1em;
  position: absolute;
  }

/* C2.10 */
.punbb td .modlist {
  display: block;
  padding-top: 0.3em
  }

/* C2.11 */
.punbb .main td {
  border-style: solid none none solid;
  border-width: 1px 0 0 1px;
  padding: 0.8em 1em;
  }

/* C2.12 */
.punbb .main th {
  border-style: none none none solid;
  border-width: 0 0 0 1px;
  padding: 0.4em 1em 0.4em 1em;
  }

/* C2.13 */
.punbb .main .tcl {
  border-left-style: none;
  border-left-width: 0
  }

/* C2.14 */
.punbb tbody.hasicon td.tcl {
  padding-left: 3.2em
  }

/* C2.15 */
.punbb div.icon {
  border-style: solid;
  border-width: 0.6em 0.6em 0.6em 0.6em;
  height: 0;
  line-height: 0.0;
  margin-top: 0.1em;
  width: 0;
  }

/* C2.16 */
.punbb  table div.icon {
  font-size: 1.05em;
  position: absolute;
  margin-left: -2.2em;
  }

 /* C3 Topics
-------------------------------------------------------------*/

/* C3.1 */
.punbb .post .container {
  border-style: none solid solid solid;
  border-width: 1px;
  margin-top: -1px;
  padding-bottom: 1px;
  }

/* C3.2 */
.punbb .post h3 {
  border-style: solid solid none solid;
  border-width: 1px;
  }

/* C3.3 */
.punbb .post h3 span {
  padding: 0.5em 1em;
  display: block;
  margin-left: 19em;
  border-left-style: solid;
  border-left-width: 1px
  }

/* C3.4 */
.punbb .post h3 strong {
  float: right;
  width: 5em;
  text-align: right;
  font-weight: normal;
  }

/* C3.5 */
.punbb .post .post-author {
  float: left;
  width: 19em;
  margin-top: -1.5em;
  overflow: hidden;
  }

/* C3.6 */
.punbb .post .post-author ul, .punbb .post .post-author p {
  padding: 0 1em 1em 1em;
  line-height: 140%;
  }

/* C3.7 */
.pa-author {
  font-size: 1.1em;
  font-weight: bold;
  }

/* C3.8 */
.pa-author a {
  text-decoration: none
  }

/* C3.9 */
li.pa-title {
  padding-bottom: 0.4em;
  font-weight: bold;
  }


li.pa-online {
  line-height: 0.8em;
  border-left-style: solid;
  border-left-width: 0.7em;
  padding-left: 0.4em;
  margin-top: 0.7em;
  }

/* C3.11 */
.punbb .post-body {
  margin-left: 19em;
  border-left-style: solid;
  border-left-width: 1px;
  padding: 0 0 1px 0;
  }

/* C3.12 */
.punbb .post-box {
  padding: 1em;
  }

/*C3.13 */
.punbb fieldset .post-box {
  margin-bottom: 0.8em
  }

/* C3.14 */
.punbb .post-links {
  margin-left: 19em;
  border-left-style: solid;
  border-left-width: 1px;
  }

/* C3.15 */
.punbb .post-links ul {
  padding: 0 1em 0 0;
  height: 2em;
  line-height: 2em;
  margin-left: -19em;
  border-top-style: dashed;
  border-top-width: 1px;
  background: transparent;
  text-align: right;
  }

/* C3.16 */
.punbb .post-links li {
  display: inline;
  padding-left: 1em;
  }

/* C3.17 */
.pl-email, .pl-website {
  float: left;
  }

/* C3.18 */
.punbb .clearer {
  clear: both;
  height: 0;
  font-size: 0;
  }


/* C4 Moderator menu
-------------------------------------------------------------*/

/* C4.1 */
.punbb .modmenu .container {
  padding: 0.5em 1em;
  text-align: right;
  }

/* C4.2 */
.punbb .modmenu strong, .punbb .modmenu a {
  height: 1.8em;
  line-height: 1.8em;
  }

/* C4.3 */
.punbb .modmenu .container strong {
  float: left;
  }

/* C4.4 */
.punbb .modmenu input {
  margin-left: 1em;
  }


/* C5 Message boxes
-------------------------------------------------------------*/

/* C5.1 */
.punbb .info .container {
  padding: 0.8em 1em
  }

/* C5.2 */
.punbb .info .container .backlink {
  padding-top: 0.8em;
  }


/* C6 Profile
-------------------------------------------------------------*/

/* C6.1 */
#profile .container {
  padding-left: 18.6em;
  }

/* C6.2 */
#profilenav {
  float: left;
  width: 14em;
  margin-left: -16.3em;
  display: inline;
  }

/* C6.3 */
#profilenav li {
  padding-bottom: 0.8em;
  font-weight: bold;
  }

/* C6.4 */
#viewprofile ul, #profilenav ul {
  border-style: solid;
  border-width: 1px;
  padding: 1.5em 18px 0.8em 18px;
  margin: 0 0 1em 0;
  }

/* C6.5 */
#viewprofile h2, #profilenav h2 {
  background: transparent;
  border: none;
  padding: 0 0 0 0;
  margin: 0 14px -0.6em 14px;
  }

/* C6.6 */
#viewprofile h2 span, #profilenav h2 span {
  padding: 0 5px;
  position: relative;
  }

/* C6.7 */
#viewprofile li, #setmods dl {
  padding: 0 0 0 16em;
  margin-bottom: 0.2em;
  }

/* C6.8 */
#viewprofile li span {
  float: left;
  width: 14em;
  margin-left: -16em;
  padding: 0.5em 1em;
  font-weight: bold;
  }

/*C6.9 */
#setmods dt {
  float: left;
  width: 14em;
  margin-left: -16em;
  padding: 0.8em 1em;
  font-weight: bold;
  display: inline;
  }

/* C6.10 */
#viewprofile li strong, #viewprofile li div, #setmods dd {
  display: block;
  padding: 0.5em 1em;
  font-weight: normal;
  }

/* C6.11 */
.punbb img.avatardemo {
  float: right;
  margin: 0 0 0.8em 1.8em
  }


/* C7 User list
-------------------------------------------------------------*/

/* C7.1 */
#pun-userlist .formal, #pun-userlist .formal .container {
  border-bottom: none;
  margin-bottom: 0;
  }

/* C7.2 */
#pun-userlist .usertable .container {
  padding: 0 2.3em 2.3em 2.3em;
  border-top: none;
  }

/* C7.3 */
#pun-userlist .usertable table {
  border-style: solid;
  border-width: 1px;
  }


/*************************************************************
D - PUNBB SECTIONS OTHER THAN MAIN CONTENT
**************************************************************/

/* D1 Logo and description
-------------------------------------------------------------*/

/* D1.1 */
#pun-title {
  margin: 0;
  border-style: solid solid none solid;
  border-width: 1px 1px 0 1px;
  }

/* D1.2 */
#pun-title h1 {
  display : block;
  height : 40px;
  padding: 2em 1em 0 1em;
  }

/* D1.3 */
#pun-title .container {
  border-style: none solid none solid;
  }

/* D1.4 */
#pun-title h1 span  {
  font-size: 1.5em;
  }

#pun-title table {
	border: none;
	height: 40px;
	width: 100%;
}

#pun-title td.title-logo-tdl {
	border: none;
	width: 100%;
}

#pun-title td.title-logo-tdr {
	border: none;
	width: 468px;
}

/* D2 Page navigation
-------------------------------------------------------------*/

/* D2.1 */
#pun-pagelinks {
  position: absolute;
  top: -15px;
  left: 0;
  margin: 0;
  border: none;
  padding: 0;
  width: 100%;
  }

/* D2.2 */
#pun-pagelinks .container {
  background: transparent;
  border: none;
  padding: 0}

/* D2.3 */
#pun-pagelinks .container li {
  display: inline
  }

/* D2.4 */
#pun-pagelinks li a, #pun-pagelinks a:link, #pun-pagelinks a:hover {
  height: 2em;
  line-height: 2em;
  padding: 0;
  font-size: 1.2em;
  margin-left: -9999px;
  display: block;
  float:left;
  width: 100%;
  }

/* D2.5 */
#pun-pagelinks a:active, #pun-pagelinks a:focus {
  position:relative;
  margin: 0;
  }

#pun-pagelinks li a span {
  display:block;
  margin: 0 1em
  }

/* D3 Forum navigation
-------------------------------------------------------------*/

/* D3.1 */
#pun-navlinks, #pun-navlinks .container {
  border-style: none;
  border-width: 0;
  margin: 0;
  }

/* D3.2 */
#pun-navlinks .container {
  padding: 0.7em 1em;
  }

/* D.3 */
#pun-navlinks li {
  display: inline;
  padding-right: 1em;
  }

/* D3.4 */
#pun-navlinks li a {
  font-size: 1.1em;
  }

/* D4 User links
-------------------------------------------------------------*/

/* D4.1 */
#pun-ulinks  {
  margin-top: 0;
  }

/* D4.2 */
#pun-ulinks .container {
  border-top: none;
  padding: 0.7em 1em;
  }

/* D4.3 */
#pun-ulinks li, #pun-ulinks li a {
  display: inline;
  border-left-style: solid;
  border-left-width: 1px;
  white-space: nowrap;
  }

/* D4.4 */
#pun-ulinks li a {
  padding: 0 0.3em 0 0.6em
  }

/* D4.5 */
#pun-ulinks li.item1, #pun-ulinks li.item1 a {
  border-left-style: none;
  border-left-width: 0;
  padding-left: 0
  }

/* D5 Welcome box and Top Breadcrumbs
-------------------------------------------------------------*/

/* D5.1 */
#pun-status, #pun-status .container {
  border-bottom: none;
  margin-bottom: 0;
  }

/* D5.2 */
#pun-status .container {
  padding: 0.8em 1em 1em 1em;
  }

/* D5.3 */
#pun-status span {
  white-space: nowrap;
  margin-right: 0.5em;
  }

/* D5.4 */
#pun-crumbs1 {
  font-weight: bold;
  overflow: hidden;
  margin-top: 0;
  }

/* D5.5 */
#pun-crumbs1 p.container {
  border-top: none;
  padding: 1em 1em 0.8em 1em;
  font-size: 1.1em;
  }

/* D5.6 */
#pun-break1 {
  margin: 0 1em;
  border-style: solid none;
  border-width: 1px 0;
  height: 0;
  margin: -2px 1em;
  position: relative;
  z-index: 1;
  }

/* D6 Announcement
-------------------------------------------------------------*/

/* D6.1 */
#pun-announcement h2 {
  padding: 0;
  margin: 0 1em -3.5em 1em;
  border-style: none none solid none;
  border-width: 0 0 1px 0;
  position: relative;
  font-weight: bold;
  }

/* D6.2 */
#pun-announcement h2 span {
  display: block;
  padding: 1em 0 0.8em 0;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  }

/* D6.3 */
#pun-announcement .container {
  padding: 4.3em 1em 1em 1em;
  }

/* D7 Statistics
-------------------------------------------------------------*/

/* D7.1 */
#pun-stats .container {
  padding: 0.8em 1em
  }

/* D7.2 */
#pun-stats li.item1, #pun-stats li.item2 {
  float: left;
  clear: both;
  line-height: 150%;
  }

/* D7.3 */
#pun-stats li.item3, #pun-stats li.item4 {
  text-align: right;
  line-height: 150%;
  }

/* D7.4 */
li#onlinelist {
  margin-top: 1em;
  border-top-style: solid;
  border-top-width: 1px;
  float: left;
  width: 100%;
  line-height: 130%;
  }

/* D7.5 */
li#onlinelist div {
  border-top-style: solid;
  border-top-width: 1px;
  padding: 0.7em 0 0 0;
  }

/* D8 Quick Jump - About - Bottom Breadcrumbs
-------------------------------------------------------------*/

/* D8.1 */
#pun-qjump {
  margin: 0;
  border: none;
  width: 50%;
  position: relative;
  float: left;
  }

/* D8.2 */
#pun-qjump .container {
  border: none;
  background: transparent;
  padding: 0.8em 1em;
  }

/* D8.3 */
#pun-about {
  margin-top: 0;
  }

/* D8.4 */
#pun-about .container {
  border-top-style: none;
  text-align: right;
  line-height: 150%;
  padding: 0.8em 1em;
  }

/* D8.5 */
#pun-about p span {
  display:block;
  padding-left: 50%;
  }

0

7

ксс стиль 2

Код:
/* CS1 Background and text colours
-------------------------------------------------------------*/

/* CS1.1 */
.punbb .section .container, .punbb .post-body, .punbb .post-links, .punbb td.tc2, .punbb td.tc3,
.punbb .formal fieldset .post-box, #viewprofile li strong, #viewprofile li div, #setmods dd,
.punbb .info-box, .punbb #pun-main .info-box .legend {
  background-color: transparent;
  color: #000000;
  }

/* CS1.2 */
.punbb .main .container, .punbb .post .container, .punbb .post h3, .punbb-admin #pun-admain .adcontainer {
  background-color: transparent;
  color: #000000;
  }

/* CS1.3 */
#pun-stats h2, .punbb .main h1, .punbb .main h2, #pun-debug h2, .punbb-admin #pun-admain h2 {
  background-color: transparent;
  color: #000000;
  }

/* CS1.4 */
#pun-title, #pun-title .container, .punbb .modmenu .container {
  background-color: transparent;
  color: #000000;
  }

/* CS1.5 */
.punbb legend span, #viewprofile h2 span, #profilenav h2 span, .punbb-admin #pun-admain legend span {
  background-color: transparent;
  color: #000000
  }

/* CS1.6 */
.punbb .post h3 span, .punbb th, #viewprofile li, #setmods dl  {
  background-color: transparent;
  color: #000000
  }

/* CS1.7 */
.punbb .quote-box, .punbb .code-box {
  background-color: transparent;
  color: #000000
  }

/* CS1.8 */
#pun-navlinks .container {
  background-color: transparent;
  color: #000000;
  }

.offline li.pa-online strong {
  font-weight: normal
  }

/* CS2 Border colours
-------------------------------------------------------------*/

/* CS2.1 */
.punbb .container, .punbb .post-body, .post h3, #pun-title {
  border-color:   transparent transparent transparent transparent;
  }

/* CS2.2 */
.punbb .section, .punbb .forum, .punbb .formal, .punbb .modmenu, .punbb .info,
.punbb .category, .punbb .post {
  border-color:   transparent;
  }

/* CS2.3 */
#pun-stats h2, .punbb .main h1, .punbb .main h2, #pun-debug h2, .punbb-admin #pun-admain h2 {
  border-color:   transparent;
  }

/* CS2.4 */
.punbb td, .punbb fieldset, #viewprofile ul, #profilenav ul, .punbb .post .post-body,
.punbb .post h3 span, .post-links ul, .post-links, .usertable table {
  border-color:   transparent;
  }

/* CS2.5 */
.punbb th {
  border-color: transparent;
  }

/* CS2.6 */
.punbb .quote-box, .punbb .code-box {
  border-color:  #afafaf #898989 #8c8b89 #b8b8b8;
  }

#pun-ulinks li, #pun-announcement h2 span, li#onlinelist, #pun-help .formal .info-box h3.legend span {
  border-color: #ccc
  }

#pun-ulinks li a, #pun-announcement h2, li#onlinelist div, #pun-help .formal .info-box h3.legend {
  border-color: #fff
  }

.punbb .divider {
  border-color: #ccc #fff #fff #fff
  }

.punbb .formal fieldset .post-box, .punbb .info-box {
  border: 1px solid #dedfdf
  }

li.pa-online {
  border-left-color: transparent;
  }



/* CS3 Links
-------------------------------------------------------------*/

/* CS3.1 */
.punbb a, .punbb a:link, .punbb a:visited,
.punbb-admin #pun-admain a, .punbb-admin #pun-admain a:link, .punbb-admin #punbb-admain a:visited {
  color: #000000
  }

.punbb li.isactive a, .punbb li.isactive a:link, .punbb li.isactive a:visited {
  color: #000000
  }

/* CS3.2 */
.punbb a:hover, .punbb a:focus, .punbb a:active,  .punbb-admin #pun-admain .nodefault,
.punbb-admin #punbb-admain a:hover, .punbb-admin #punbb-admain a:focus, .punbb-admin #punbb-admain a:active {
  color: #D2691E;
  }

/* CS3.3 */
#pun-navlinks a {
  color: #D2691E;
  text-decoration: none
  }

/* CS3.4 */
#pun-navlinks a:hover, #pun-navlinks a:focus, #pun-navlinks a:active {
  color:  #000000;
  text-decoration: underline
  }

#pun-pagelinks a:active, #pun-pagelinks a:focus {
  background-color: #000000;
  color:  #FF0000;
  }

/* CS4 Post status icons
 -------------------------------------------------------------*/

div.icon {border-color: #E6E6E6 #DEDEDE #DADADA #E2E2E2}
tr.iredirect div.icon {border-color: #bcb8b8 #c3c3c3 #a9a9a9 #d1d1d1}
div.inew {border-color: #6d6d6d #787878 #676767 #7e7e7e}

#pun-main div.catleft, #pun-main div.catright {display: none}

0

8

admins life

<a href="http://es.tinypic.com" target="_blank"><img src="http://i35.tinypic.com/i3f24p.png" border="0" alt="twilight love: rosalie and emmet: admins life" width=300 height=40></a>

0

9

<a href="http://es.tinypic.com" target="_blank"><img src="http://i38.tinypic.com/wteyvm.png" border="0" alt="twilight love: rosalie and emmet: regestration sections" width=300 height=40></a>

regestration sections

<a href="http://es.tinypic.com" target="_blank"><img src="http://i38.tinypic.com/257ps36.png" border="0" alt="twilight love: rosalie and emmet: regestration sections" width=300 height=40></a>

organization sections

<a href="http://es.tinypic.com" target="_blank"><img src="http://i34.tinypic.com/281ugk7.png" border="0" alt="twilight love: rosalie and emmet: profile" width=300 height=40></a>

profile

<a href="http://es.tinypic.com" target="_blank"><img src="http://i38.tinypic.com/28wpdtv.png" border="0" alt="twilight love: rosalie and emmet: relations" width=300 height=40></a>

our relations

0

10

флуд привеццтвуеца?

0

11

Gregory House
создай лучше другую тему хД а то я тут потом нифига не найду

0

12

Новые-старые сообщения

Код:
<style type="text/css">TR.inew Div.icon {
background-image : url(http://i37.tinypic.com/10r7hvb.png);
background-repeat: no-repeat;
}
.punbb table Div.icon {float: right; display: block; width: 100px; height: 50px; border-style: none none none none;}
</style>


<style type="text/css"> Div.icon {
background-image : url(http://i37.tinypic.com/2i8d9v9.png);
background-repeat: no-repeat;
}
.punbb table Div.icon {float: right; display: block; width: 100px; height: 50px; border-style: none none none none;}
</style>

<style type="text/css"> TR.iredirect Div.icon {
background-image : url(http://i38.tinypic.com/nmfgur.png);
background-repeat: no-repeat;
}
.punbb table Div.icon {float: right; display: block; width: 100px; height: 50px; border-style: none none none none;}
</style>

<style type="text/css"> TR.iclosed Div.icon {
background-image : url(http://i35.tinypic.com/mru495.png);
background-repeat: no-repeat;
}
.punbb table Div.icon {float: right; display: block; width: 100px; height: 50px; border-style: none none none none;}
</style>


<style type="text/css">TR.isticky Div.icon {
background-image : url(http://i35.tinypic.com/24n1awi.png);
background-repeat: no-repeat;
}
.punbb table Div.icon {float: right; display: block; width: 100px; height: 50px; border-style: none none none none;}
</style>

0


Вы здесь » House M.D. » Архив » коды


Рейтинг форумов | Создать форум бесплатно