Перейти к публикации
  • Сейчас на странице   Всего пользователей: 3   (0 пользователей, 3 гостя)

WitheR

Смена дизайна ПД от Визера. для новой ПД пока не планируется.

Рекомендованные сообщения

Такая хуйня, что пиздец.

там пиздато , что шапка прикрепленная и не двигается

а все остальное пиздец кнч

 

где то тема была чувак пилил эту штуку

Поделиться сообщением


Ссылка на сообщение

замените скрипты игнора в первом посте на

// ==UserScript==
// @name           Prodota.ru - ignore list
// @namespace      www.prodota.ru
// @include        http://prodota.ru/forum2/*
// @version        0.1
// @encoding       utf-8
// @author         PCJakeD,afanasij, DIMAN123456789
// ==/UserScript==
(function()
{
var banned = new Array();
//to ignore user with id 1, 2 a 3 uncomment the following lines, evtl. add more lines in format "banned.push(uid);"	
banned.push({"user_id":"88648","user_name":"PwnsoOme"});
banned.push({"user_id":"86409","user_name":"Mark.0FF.ka"});
banned.push({"user_id":"35","user_name":"ro4a"});
banned.push({"user_id":"83404","user_name":"healms"});
banned.push({"user_id":"9268","user_name":"Murder"});	
banned.push({"user_id":"59623","user_name":"BeautifulDream"});
banned.push({"user_id":"102212","user_name":"Aquador"});
//banned.push({"user_id":"9268","user_name":"Murder"});
//banned.push({"user_id":"9268","user_name":"Murder"});
//banned.push({"user_id":"9268","user_name":"Murder"});



function getElementsByClass(searchClass,node,tag) {
	var classElements = new Array();
	if ( node == null )
		node = document;
	if ( tag == null )
		tag = '*';
	var els = node.getElementsByTagName(tag);
	var elsLen = els.length;

	var pattern = new RegExp("(^|\\s)"+searchClass+"(\\s|$)");
	for (i = 0, j = 0; i 			if ( pattern.test(els[i].className) ) {
			classElements[j] = els[i];
			j++;
		}
	}
	return classElements;
}

var allQuote = getElementsByClass('topslice_quote',null,'div');


for (var i = 0; i 		var uid = banned[i].user_id;
	var url = 'http://prodota.ru/forum2/index.php?action=profile;u=' + uid;
	var expression1 = '//body/table/tbody/tr/td/div/div[2]/div[2]/form/div[div[1]/div[1]/h4/a[@href = "'+ url +'"]]';
	var expression2 = '//body/table/tbody/tr/td/div/div[2]/div[3]/form/div[div[1]/div[1]/h4/a[@href = "'+ url +'"]]';

	var nodes1 = document.evaluate(expression1, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
	var nodes2 = document.evaluate(expression2, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);


	for (var j = 0; j 		var c = nodes1.snapshotItem(j);
	var s = document.createElement("div");
	s.className = "titlebg";		
	s.innerHTML = 'Show post '+banned[i].user_name+'?'; 
	s.addEventListener("click", function(orig) {
	  this.innerHTML = orig;
	}.bind(c, c.innerHTML), false);
	c.innerHTML = "";
	c.appendChild(s);
  }

   for (var j = 0; j 		var c = nodes2.snapshotItem(j);
	var s = document.createElement("div");		
	s.className = "titlebg";		
	s.innerHTML = 'Show post '+banned[i].user_name+'?'; 
	s.addEventListener("click", function(orig) {
	  this.innerHTML = orig;
	}.bind(c, c.innerHTML), false);
	c.innerHTML = "";
	c.appendChild(s);
   }

	for(var k = 0; k 		{
		var elem =allQuote[k];
		if(typeof allQuote[k].childNodes[0].innerHTML != 'undefined' && elem.childNodes[0].innerHTML.indexOf(banned[i].user_name) > 0)
		{
			var _elem = elem.parentNode.nextElementSibling;//.style.display = 'none';
			_elem.setAttribute("id","hidden_"+k);

			var a = document.createElement("a");
			a.innerHTML = 'Show post?';

			a.setAttribute("href", "#");
			a.setAttribute("onclick","return false;");
			a.setAttribute("hide","hidden_"+k);
			a.setAttribute("style","border-bottom:1px dashed");
			elem.parentNode.parentNode.insertBefore(a, elem.parentNode.nextElementSibling);
			a.addEventListener("click", function(){
				document.getElementById(this.getAttribute("hide")).style.display = 'block';
				this.style.display = 'none';
				return false;
			});
			_elem.style.display = 'none';
		}

	}
} 
})();

а то там несвежие


Торжество разума в том, чтобы уживаться с теми, у кого этого разума нет. Вольтер.
Чтобы хорошо высыпаться, нужно спать 8 часов в день. И еще столько же ночью.

Поделиться сообщением


Ссылка на сообщение

замените скрипты игнора в первом посте на

// ==UserScript==
// @name           Prodota.ru - ignore list
// @namespace      www.prodota.ru
// @include        http://prodota.ru/forum2/*
// @version        0.1
// @encoding       utf-8
// @author         PCJakeD,afanasij, DIMAN123456789
// ==/UserScript==
(function()
{
var banned = new Array();
//to ignore user with id 1, 2 a 3 uncomment the following lines, evtl. add more lines in format "banned.push(uid);"	
banned.push({"user_id":"88648","user_name":"PwnsoOme"});
banned.push({"user_id":"86409","user_name":"Mark.0FF.ka"});
banned.push({"user_id":"35","user_name":"ro4a"});
banned.push({"user_id":"83404","user_name":"healms"});
banned.push({"user_id":"9268","user_name":"Murder"});	
banned.push({"user_id":"59623","user_name":"BeautifulDream"});
banned.push({"user_id":"102212","user_name":"Aquador"});
//banned.push({"user_id":"9268","user_name":"Murder"});
//banned.push({"user_id":"9268","user_name":"Murder"});
//banned.push({"user_id":"9268","user_name":"Murder"});



function getElementsByClass(searchClass,node,tag) {
	var classElements = new Array();
	if ( node == null )
		node = document;
	if ( tag == null )
		tag = '*';
	var els = node.getElementsByTagName(tag);
	var elsLen = els.length;

	var pattern = new RegExp("(^|\\s)"+searchClass+"(\\s|$)");
	for (i = 0, j = 0; i < elsLen; i++) {
		if ( pattern.test(els[i].className) ) {
			classElements[j] = els[i];
			j++;
		}
	}
	return classElements;
}

var allQuote = getElementsByClass('topslice_quote',null,'div');


for (var i = 0; i < banned.length; i++){
	var uid = banned[i].user_id;
	var url = 'http://prodota.ru/forum2/index.php?action=profile;u=' + uid;
	var expression1 = '//body/table/tbody/tr/td/div/div[2]/div[2]/form/div[div[1]/div[1]/h4/a[@href = "'+ url +'"]]';
	var expression2 = '//body/table/tbody/tr/td/div/div[2]/div[3]/form/div[div[1]/div[1]/h4/a[@href = "'+ url +'"]]';

	var nodes1 = document.evaluate(expression1, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
	var nodes2 = document.evaluate(expression2, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);


	for (var j = 0; j < nodes1.snapshotLength; j++) {
	var c = nodes1.snapshotItem(j);
	var s = document.createElement("div");
	s.className = "titlebg";		
	s.innerHTML = 'Show post '+banned[i].user_name+'?'; 
	s.addEventListener("click", function(orig) {
	  this.innerHTML = orig;
	}.bind(c, c.innerHTML), false);
	c.innerHTML = "";
	c.appendChild(s);
  }

   for (var j = 0; j < nodes2.snapshotLength; j++) {
	var c = nodes2.snapshotItem(j);
	var s = document.createElement("div");		
	s.className = "titlebg";		
	s.innerHTML = 'Show post '+banned[i].user_name+'?'; 
	s.addEventListener("click", function(orig) {
	  this.innerHTML = orig;
	}.bind(c, c.innerHTML), false);
	c.innerHTML = "";
	c.appendChild(s);
   }

	for(var k = 0; k < allQuote.length;k++)
	{
		var elem =allQuote[k];
		if(typeof allQuote[k].childNodes[0].innerHTML != 'undefined' && elem.childNodes[0].innerHTML.indexOf(banned[i].user_name) > 0)
		{
			var _elem = elem.parentNode.nextElementSibling;//.style.display = 'none';
			_elem.setAttribute("id","hidden_"+k);

			var a = document.createElement("a");
			a.innerHTML = 'Show post?';

			a.setAttribute("href", "#");
			a.setAttribute("onclick","return false;");
			a.setAttribute("hide","hidden_"+k);
			a.setAttribute("style","border-bottom:1px dashed");
			elem.parentNode.parentNode.insertBefore(a, elem.parentNode.nextElementSibling);
			a.addEventListener("click", function(){
				document.getElementById(this.getAttribute("hide")).style.display = 'block';
				this.style.display = 'none';
				return false;
			});
			_elem.style.display = 'none';
		}

	}
} 
})();

а то там несвежие

там свежее некуда. Твой скрипт гляну завтра, уверен, что это диман14543253453453 дорисовал страниц 30 назад и там чего-то не хватало :hmm:


Популярные теги

сисястые малолетки фото, дівчата відео, самый длинный член, нудисты казантипа, hd порно фото, красавицы с прекрасной грудью фото, картинки с нарисованными попами, Порно Видео 90-х, круглые упругие большие, маленькие девочки в порно смотреть онлайн, трусики 18 на девушках, порно фото лизы энн, gjhyj rhfcbdfz vfvf, красивые писчьки видио, порно в игре скайрим скрины, голенькие девочки дети видео, смотреть порно в обтяжку, фото эро спорт, голые дамы 40 лет, голый жопой, фото голих маленких девочек, самая красивая кариянка ебеться, секс смотреть как мамы учат детей, пизда маленькой девочки фото, секс с проводницей, животное трахают женщину порно смотреть бесплатно, юные модели портфолио обнаженные, порно видеоролики гимнасток, отличные жопы, skritaya kamera video, японские пилотки, запретные фото дети ню, мини стринги фото, детской эротика видео, таджик порно,

порно на шпагате, порно в колготках, тату порнофото, пьяные девки видео, мини-бикини на девушках клубничное, мужики дрочат, фото женщин от 40 лет ню, голые бомжи, сисястая кошка, siski21.ru, спящие голые фото, порно видео с мололетками 10-9 лет смотреть без регистр..., прикольные письки, телки в латексе порно фото, мир нудистов порно, xxx, авто, блондинка, брюнетка, видео, видеоприкол, видеоролик, галерея, голая, голые, девки, девушка, девушки, картинки, красивая, красивые, красотка, ню, обнаженная, обнаженные, письки, подборка, попки, прикол, приколы, прикольные картинки, прикольные фотки, ржач, сексапильная, сексапильные, секси, сиськи, смешные картинки, телка, телки, фото, ххх, частное, эротика, юмор

 

 

e568b376b12c5cc190ad2f402b1a57db.gif

 

 

Озорник дятел давно жил на свете.

Делал он дырки везде,

повредил он целый лес.

Разозлился леса бог, сделал дятлу ядовитый клюв тогда.

И теперь беда у дятла – домик свой он отравил,

еду он отравил.

Все его друзья умирают, только их коснись.

Так печалн бедный дятел.

Вот теперь блесит всегда его вся в яде слеза.

2Hlrs.png

 

Поделиться сообщением


Ссылка на сообщение

юзал синий дизайн.очень удобный и красивый

только автарки там не менялись


VAGfamily

Поделиться сообщением


Ссылка на сообщение

Скоро крестик будет работать. :avtoradolf: Надо только прикрутить игнор цитат и все.


XEeIBLg.png

Поделиться сообщением


Ссылка на сообщение

замените скрипты игнора в первом посте на

// ==UserScript==
// @name           Prodota.ru - ignore list
// @namespace      www.prodota.ru
// @include        http://prodota.ru/forum2/*
// @version        0.1
// @encoding       utf-8
// @author         PCJakeD,afanasij, DIMAN123456789
// ==/UserScript==
(function()
{
   var banned = new Array();
   //to ignore user with id 1, 2 a 3 uncomment the following lines, evtl. add more lines in format "banned.push(uid);"   
   banned.push({"user_id":"88648","user_name":"PwnsoOme"});
   banned.push({"user_id":"86409","user_name":"Mark.0FF.ka"});
   banned.push({"user_id":"35","user_name":"ro4a"});
   banned.push({"user_id":"83404","user_name":"healms"});
   banned.push({"user_id":"9268","user_name":"Murder"});   
   banned.push({"user_id":"59623","user_name":"BeautifulDream"});
   banned.push({"user_id":"102212","user_name":"Aquador"});
   //banned.push({"user_id":"9268","user_name":"Murder"});
   //banned.push({"user_id":"9268","user_name":"Murder"});
   //banned.push({"user_id":"9268","user_name":"Murder"});
   
   

   function getElementsByClass(searchClass,node,tag) {
      var classElements = new Array();
      if ( node == null )
         node = document;
      if ( tag == null )
         tag = '*';
      var els = node.getElementsByTagName(tag);
      var elsLen = els.length;

      var pattern = new RegExp("(^|\\s)"+searchClass+"(\\s|$)");
      for (i = 0, j = 0; i          if ( pattern.test(els[i].className) ) {
            classElements[j] = els[i];
            j++;
         }
      }
      return classElements;
   }

   var allQuote = getElementsByClass('topslice_quote',null,'div');


   for (var i = 0; i       var uid = banned[i].user_id;
      var url = 'http://prodota.ru/forum2/index.php?action=profile;u=' + uid;
      var expression1 = '//body/table/tbody/tr/td/div/div[2]/div[2]/form/div[div[1]/div[1]/h4/a[@href = "'+ url +'"]]';
      var expression2 = '//body/table/tbody/tr/td/div/div[2]/div[3]/form/div[div[1]/div[1]/h4/a[@href = "'+ url +'"]]';

      var nodes1 = document.evaluate(expression1, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
      var nodes2 = document.evaluate(expression2, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);

      
      for (var j = 0; j       var c = nodes1.snapshotItem(j);
      var s = document.createElement("div");
      s.className = "titlebg";      
      s.innerHTML = 'Show post '+banned[i].user_name+'?'; 
      s.addEventListener("click", function(orig) {
        this.innerHTML = orig;
      }.bind(c, c.innerHTML), false);
      c.innerHTML = "";
      c.appendChild(s);
     }

      for (var j = 0; j       var c = nodes2.snapshotItem(j);
      var s = document.createElement("div");      
      s.className = "titlebg";      
      s.innerHTML = 'Show post '+banned[i].user_name+'?'; 
      s.addEventListener("click", function(orig) {
        this.innerHTML = orig;
      }.bind(c, c.innerHTML), false);
      c.innerHTML = "";
      c.appendChild(s);
      }

      for(var k = 0; k       {
         var elem =allQuote[k];
         if(typeof allQuote[k].childNodes[0].innerHTML != 'efined' && elem.childNodes[0].innerHTML.indexOf(banned[i].user_name) > 0)
         {
            var _elem = elem.parentNode.nextElementSibling;//.style.display = 'none';
            _elem.setAttribute("id","hidden_"+k);

            var a = document.createElement("a");
            a.innerHTML = 'Show post?';
            
            a.setAttribute("href", "#");
            a.setAttribute("onclick","return false;");
            a.setAttribute("hide","hidden_"+k);
            a.setAttribute("style","border-bottom:1px dashed");
            elem.parentNode.parentNode.insertBefore(a, elem.parentNode.nextElementSibling);
            a.addEventListener("click", function(){
               document.getElementById(this.getAttribute("hide")).style.display = 'block';
               this.style.display = 'none';
               return false;
            });
            _elem.style.display = 'none';
         }

      }
   } 
})();

а то там несвежие

там свежее некуда. Твой скрипт гляну завтра, уверен, что это диман14543253453453 дорисовал страниц 30 назад и там чего-то не хватало :hmm:

тот, что для оперы там написан точно старый. Остальные не качал.

А этот вроде как везде работает, да и показывает еще кто именно скрыт


Торжество разума в том, чтобы уживаться с теми, у кого этого разума нет. Вольтер.
Чтобы хорошо высыпаться, нужно спать 8 часов в день. И еще столько же ночью.

Поделиться сообщением


Ссылка на сообщение
Гость Anonimus

Зачем кого-то игнорировать?

Почему нельзя просто не обращать внимание на посты того кто тебе не нравится. Почему вы не даете шанс исправиться человеку игнорируя его, тем самым вычеркивая из жизни с плохим впечетлением о нем. Как то это не человечно, ребята.

 

Поделиться сообщением


Ссылка на сообщение

Ты сам-то понимаешь, какую хуйню только что спорол?


 

So cute (

exUbieT2ViE.jpg

 

My little turtle <3

original.gif

 

[hide=But for now it's time to Run, it's time to Run!]tumblr_mc2inaFd4q1qegk2ao1_r1_500.gif

 

Kinopoisk | MyShows | Last.fm

Поделиться сообщением


Ссылка на сообщение

есть ли возможность на подобии игнора реализовать скрипт для удаления из новых сообщений всех тредов с определённых разделов?

по ай-ди раздела

 

я думаю многие с радостью выпили бы нахуй вакансии, реплеи, аниме, лол или общий (оба общих)

но в линке же есть айди раздела

там все темы разбиты на блоки < tr>

внутри присутствует линк на раздел

 

http://dl.dropbox.com/u/46195746/Exchange/newthreadslist.png

 

 

неужели невоможно "войти" скриптом в таблицу, проигнорить первый tr с тайтлами и дальше каждый блок tr пробивать на .Contains("?board=" + id + ".0") ?

взяться самому за это не позволяет недостаток времени  :sad:

Поделиться сообщением


Ссылка на сообщение

pU6nекак засунуть в самый низ картинку какую нибудь

код

a:link, a:visited
{
color: #476C8E;
text-decoration: none;
}
a:hover
{
text-decoration: underline;
}
table
{
empty-cells: show;
}
body
{
background: #C8C8C8;
font: 95%/90% Trebuchet MS, Verdana, Helvetica, sans-serif;
margin: 0;
}
body#help_popup
{
width: auto;
padding: 1em;
min-width: 0;
}
body, td, th, tr
{
color: #444;
}
form
{
padding: 0;
margin: 0;
}
input, button, select, textarea
{
font: 90%/105% verdana, Helvetica, sans-serif;
color: #000;
background: #ffffff;
}
textarea
{
background:#ffffff;
font: 100%/130% verdana, Helvetica, sans-serif;
}
input.input_check, input.input_radio
{
border: none;
background: none;
}
hr, .hrcolor
{
height: 1px;
border: 0;
color: #666;
background-color: #666;
}
h1, h2, h3, h4, h5, h6
{
color: #000;
font-size: 1em;
margin: 0;
padding: 0;
}
.content fieldset
{
border: 2px groove #fff;
padding: 1em;
margin: 0 0 0.3em 0;
}
a img
{
border: 0;
}
strong
{
font-weight: bold;
}
em
{
font-style: italic;
}
.underline
{
text-decoration: underline;
}
.floatright, .align_right
{
float: right;
}
.floatleft, .align_left
{
float: left;
}
.flow_auto
{
overflow: auto;
}
.flow_hidden
{
overflow: hidden;
}
.clear
{
clear: both;
}
.clear_left
{
clear: left;
}
.clear_right
{
clear: right;
}
.smalltext, tr.smalltext th
{
font-size: 11px;
}
.middletext
{
font-size: 0.9em;
font-family: verdana, sans-serif;
}
.normaltext
{
font-size: 1em;
line-height: 1.2em;
}
.largetext
{
font-size: 1.4em;
}
.centertext
{
margin: 0 auto;
text-align: center;
}
.righttext
{
margin-left: auto;
margin-right: 0;
text-align: right;
}
.lefttext
{
margin-left: 0;
margin-right: auto;
text-align: left;
}
.padding
{
padding: 0.7em;
}
.main_section, .lower_padding
{
padding-bottom: 0.5em;
}
ul.reset, ul.reset li
{
padding: 0;
margin: 0;
list-style: none;
}
.bbc_standard_quote, .bbc_alternate_quote
{
    color: #000;
    border: 1px solid #908F8F;
    margin: 1px;
    padding: 5px;
    font-size: 12px;
    line-height: 1.4em;
        background: #eee;
}
blockquote.bbc_standard_quote
{
background-color: #e7e8ed;
}
blockquote.bbc_alternate_quote
{
background-color: #f0f1f3;
}
code.bbc_code
{
display: block;
font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
font-size: x-small;
background: #eef;
border: 1px solid #000;
line-height: 1.3em;
padding: 1px;
overflow: auto;
white-space: pre;
max-height: 24em;
}
.codeheader, .quoteheader
{
color: #000;
text-decoration: none;
font-style: normal;
font-weight: bold;
font-size: 10px;
line-height: 1.2em;
padding: 0 0.3em;
}
.codeoperation
{
font-weight: normal;
}
.bbc_size
{
line-height: 1.4em;
}
.bbc_color a
{
color: inherit;
}
.bbc_img
{
border: 0;
}
.bbc_table
{
font: inherit;
color: inherit;
}
.bbc_table td
{
font: inherit;
color: inherit;
vertical-align: top;
}
.bbc_u
{
text-decoration: underline;	
}
.bbc_tt
{
font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
}
.help
{
cursor: help;
}
.meaction
{
color: red;
}
.highlight
{
background-color: #ff0;
font-weight: bold;
color: #000;
}
.highlight2
{
background-color: #D1E1EF;
color: #000;
}
.titlebg, .titlebg2, tr.titlebg td, tr.titlebg2 td
{
color: #000;
font-family: Verdana, Helvetica, sans-serif;
font-weight: bold;
background: url(../images/titlebg.jpg) #E9F0F6 repeat-x;
}
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
{
color: #000;
font-family: Verdana, Helvetica, sans-serif;
font-weight: bold;
background: url(../images/catbg.jpg) #88A6C0 repeat-x;
}
.catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th
{
background: url(../images/catbg2.jpg) #A1BFD9 repeat-x;
}
tr.titlebg td, tr.titlebg2 td
{
padding: 6px;
}
tr.catbg td, tr.catbg2 td, td.catbg, td.catbg2, tr.catbg th, tr.catbg2 th, th.catbg, th.catbg2
{
padding: 6px;
}
tr.titlebg td a, tr.titlebg2 td a
{
color: #000;
}
tr.catbg td a, tr.catbg2 td a, .catbg a
{
color: #000;
}
tr.catbg th.smalltext
{
font-size: 0.9em;
}
.windowbg, .content, .roundframe
{
color: #000;
background-color: #f0f0f0;
}
.windowbg2
{
color: #000;
background-color: #f6f6f6;
}
.windowbg3
{
color: #000;
background-color: #e0e1e8;
}
.pagesection
{
font-size: 0.9em;
padding: 0.5em;
overflow: hidden;
}
.pagesection .pagelinks
{
padding: 0.5em 0;
}
table.table_grid thead tr.catbg th.smalltext
{
white-space: nowrap;
}
.approvebg
{
color: #000;
background-color: #f6e0d4;
}
.approvetbg
{
color: #000;
background-color: #e4a17c;
}
.stickybg
{
background: #e8d8cf;
}
.stickybg2
{
background: #f2e3d9;
}
.lockedbg
{
background: #d4dce2;
font-style: italic;
}
.lockedbg2
{
background: #d8e1e7;
font-style: italic;
}
.post, .personalmessage
{
width: 100%;
font-family:Tahoma;
line-height: 1.4em;
}
.signature
{
clear: right;
padding: 1em 0 3px 0;
width: 98%;
border-top: 1px solid #666;
line-height: 1.4em;
font-size: 0.85em;
}
.custom_fields_above_signature
{
clear: right;
padding: 1em 0 3px 0;
width: 98%;
border-top: 1px solid #666;
line-height: 1.4em;
font-size: 0.85em;
}
.error
{
color: red;
}
.alert
{
color: red;
}
.birthday
{
color: #920ac4;
}
.event
{
color: #078907;
}
.holiday
{
color: #000080;
}
.warn_mute
{
color: red;
}
.warn_moderate
{
color: #ffa500;
}
.warn_watch, .success
{
color: green;
}
a.moderation_link, a.moderation_link:visited
{
color: red;
font-weight: bold;
}
.openid_login
{
background: white url(../images/openid.gif) no-repeat;
padding-left: 18px;
}
.description
{
padding: 1em;
font-size: 0.9em;
line-height: 1.5em;
border: 1px solid #bbb;
background: #f5f5f0;
margin: 0 0 1em 0;
}
.information
{
padding: 1em;
font-size: 0.9em;
line-height: 1.5em;
border: 1px solid #bbb;
background: #f0f6f0;
margin: 0 0 1em 0;
}
.information p
{
padding: 1em;
margin: 0;
}
#ajax_in_progress
{
background: #32cd32;
color: #fff;
text-align: center;
font-weight: bold;
font-size: 18pt;
padding: 0.4em;
width: 100%;
position: fixed;
top: 0;
left: 0;
}
#ajax_in_progress a
{
color: #fff;
text-decoration: underline;
font-size: smaller;
float: right;
}
table.table_grid
{
border-collapse: collapse;
border: 1px solid #adadad;
}
table.table_grid td
{
padding: 3px;
border: 1px solid #adadad;
}
dl.settings
{
clear: right;
overflow: auto;
margin: 0 0 10px 0;
padding: 0;
}
dl.settings dt
{
width: 48%;
float: left;
margin: 0 0 10px 0;
padding: 0;
clear: both;
}
dl.settings dt.settings_title
{
width: 100%;
float: none;
margin: 0 0 10px 0;
padding: 5px 0 0 0;
font-weight: bold;
clear: both;
}
dl.settings dt.windowbg
{
width: 98%;
float: left;
margin: 0 0 3px 0;
padding: 0 0 5px 0;
clear: both;
}
dl.settings dd
{
width: 48%;
float: left;
margin: 0 0 3px 0;
padding: 0;
}
dl.settings img
{
margin: 0 10px 0 0;
}
.content, .roundframe
{
padding: 0.5em 1.2em;
margin: 0;
border: none;
border: 1px solid #adadad;
}
.content p, .roundframe p
{
margin: 0 0 0.5em 0;
}
.auto_suggest_div
{
border: 1px solid #000;
position: absolute;
visibility: hidden;
}
.auto_suggest_item
{
background-color: #ddd;
}
.auto_suggest_item_hover
{
background-color: #888;
cursor: pointer;
color: #eee;
}
#adm_container
{
float: left;
margin-left: 10px;
padding: 0 5px 0 5px;
background: url(../images/admintab_left.gif) no-repeat;
}
ul.admin_menu, ul.admin_menu li ul
{
margin: 0;
padding: 0;
list-style: none;
}
ul.admin_menu
{
background: url(../images/admintab_right.gif) top right no-repeat;
}
ul.admin_menu a
{
text-decoration: none;
}
ul.admin_menu li
{
position: relative;
float: left;
background: url(../images/admintab_back.gif) top right repeat-x;
padding-right: 4px;
}
ul.admin_menu li.last
{
background: url(../images/admintab_right.gif) top right repeat-x;
}
ul.admin_menu li.chosen
{
background: url(../images/admintab_active_left.gif) no-repeat;
padding: 0 0 0 6px;
}
ul.admin_menu li h4
{
margin: 0;
padding: 7px 5px 3px 5px;
cursor: pointer;
font-weight: normal;
font-size: x-small;
text-transform: uppercase;
color: #fff;
}
ul.admin_menu li.last.chosen h4
{
background: url(../images/admintab_active_last.gif) top right no-repeat;
padding-right: 17px;
}
ul.admin_menu li.last_chosen h4
{
background: url(../images/admintab_active_last.gif) top right no-repeat;
padding-right: 17px;
}
ul.admin_menu li.chosen h4
{
background: url(../images/admintab_active_right.gif) top right no-repeat;
padding-right: 10px;
}
ul.admin_menu li ul
{
z-index: 90;
display: none;
position: absolute;
width: 19em;
border: 1px solid #808080;
border-left: 2px solid #6888a7;
background: #f8f8fb;
}
ul.admin_menu li.chosen ul
{
margin: 0 0 0 -6px;
}
ul.admin_menu li ul li
{
background: none;
width: 19em;
padding: 0;
}
ul.admin_menu li ul li a
{
display: block;
padding: 0.5em 2em 0.5em 0.5em;
font-size: 90%;
text-decoration: none;
background: none;
color: #000 !important;
}
ul.admin_menu li ul li a.subsection
{
background: url(../images/admin/subsection.gif) no-repeat 98% 50%;
}
ul.admin_menu li ul li a.chosen
{
font-weight: bold;
}
ul.admin_menu li ul li a:hover
{
background-color: #c8e2fb;
text-decoration: none;
}
ul.admin_menu li:hover ul, ul.admin_menu li.over ul
{
display: block;
}
ul.admin_menu li ul li ul, ul.admin_menu li ul li.over ul
{
display: none;
position: absolute;
top: -999em;
border: 1px solid #a0a0a0;
border-left: 2px solid #6888a7;
background: #fff;
}
ul.admin_menu li ul li:hover ul, ul.admin_menu li ul li.over ul
{
display: block;
left: 18em;
top: auto;
margin: -2em 0 0 1em;
}
#adm_submenus
{
padding: 0 0 0 2em;
}
#adm_submenus, #adm_submenus ul
{
height: 3em;
overflow: auto;
}
div#menu_toggle
{
float: right;
margin: 0 10px 0 0;
background: url(../images/mirrortab_first.gif) top left no-repeat;
padding: 0 0 0 7px;
}
div#menu_toggle a
{
display: block;
background: #e5e5e8 url(../images/mirrortab_last.gif) top right no-repeat;
padding: 8px 12px 3px 6px;
}
.buttonlist ul
{
background: url(../images/maintab_first.gif) no-repeat scroll left bottom;
padding: 0 0 0 10px;
}
.buttonlist ul li, .buttonlist_bottom ul li
{
display: inline;
}
.buttonlist ul li a, .buttonlist_bottom ul li a
{
float: left;
display: block;
color: #000000;
font-size: 0.8em;
font-family: tahoma, sans-serif;
text-transform: uppercase;
text-decoration: none;
}
.buttonlist ul li a:hover, .buttonlist_bottom ul li a:hover
{
color: #e0e0ff;
}
.buttonlist ul li a span
{
background: url(../images/maintab_back.gif) repeat-x bottom left;
display: block;
padding: 0.1em 0.5em 0.5em 0.5em;
}
.buttonlist ul li.last a span
{
background: url(../images/maintab_last.gif) no-repeat bottom right;
padding: 0.1em 1em 0.5em 0.5em;
}
.buttonlist ul li.active a span em
{
padding: 0.1em 0.5em 0.5em 0.5em;
display: block;
font-style: normal;
background: url(../images/maintab_active_back.gif) repeat-x bottom right;
}
.buttonlist ul li.active a span
{
background: url(../images/maintab_active_first.gif) no-repeat bottom left;
padding: 0 0 0 8px;
}
.buttonlist ul li.last.active
{
float: left;
background: url(../images/maintab_last.gif) no-repeat bottom right;
padding: 0 8px 0 0;
}
.buttonlist ul li.active a
{
background: url(../images/maintab_active_last.gif) no-repeat bottom right;
padding-right: 8px;
}
.buttonlist_submit
{
background: transparent;
color: #fff;
text-transform: uppercase;
vertical-align: top;
text-decoration: none;
font-size: 9px;
font-family: tahoma, sans-serif;
border: 0;
}
.buttonlist_submit:hover
{
color: #e0e0ff;
}
.buttonlist_bottom ul
{
background: url(../images/mirrortab_first.gif) no-repeat scroll left top;
padding: 0 0 0 10px;
}
.buttonlist_bottom ul li a span {
color:#333;
font-weight:bold;
display:block;
padding:0.4em 0.5em 0.2em;
background-color:#ffffff;
}
.buttonlist_bottom ul li.last a span
{
background: url(../images/mirrortab_last.gif) no-repeat top right;
padding: 0.4em 1em 0.2em 0.5em;
}
.buttonlist_bottom ul li.active a span em
{
padding: 0.4em 0.5em 0.2em 0.5em;
display: block;
font-style: normal;
background: url(../images/mirrortab_active_back.gif) repeat-x top right;
}
.buttonlist_bottom ul li.active a span
{
background: url(../images/mirrortab_active_first.gif) no-repeat top left;
padding: 0 0 0 8px;
}
.buttonlist_bottom ul li.last.active
{
float: left;
background: url(../images/mirrortab_last.gif) no-repeat top right;
padding: 0 8px 0 0;
}
.buttonlist_bottom ul li.active a
{
background: url(../images/mirrortab_active_last.gif) no-repeat top right;
padding-right: 8px;
}
.oldbuttonlist
{
text-align: right;
padding: 0.5em;
}
ul.quickbuttons
{
margin: 0.9em 11px 0 0;
clear: right;
float: right;
text-align: right;
font-family: arial, sans-serif;
font-size: 0.85em;
}
ul.quickbuttons li
{
float: left;
display: inline;
margin: 0 0 0 11px;
}
ul.quickbuttons li a
{
padding: 0 0 0.7em 20px;
display: block;
height: 20px;
font-weight: bold;
line-height: 18px;
float: left;
}
ul.quickbuttons li.quote_button
{
background: url(../images/buttons/quote.gif) no-repeat 0 0;
}
ul.quickbuttons li.remove_button
{
background: url(../images/buttons/delete.gif) no-repeat 0 0;
}
ul.quickbuttons li.modify_button
{
background: url(../images/buttons/modify.gif) no-repeat 0 0 0;
}
ul.quickbuttons li.approve_button
{
background: url(../images/buttons/approve.gif) no-repeat 0 0 0;
}
ul.quickbuttons li.restore_button
{
background: url(../images/buttons/restore_topic.gif) no-repeat 0 0;
}
ul.quickbuttons li.split_button
{
background: url(../images/buttons/split.gif) no-repeat 0 0;
}
ul.quickbuttons li.reply_button
{
background: url(../images/buttons/reply.gif) no-repeat 0 0;
}
ul.quickbuttons li.reply_all_button
{
background: url(../images/buttons/reply.gif) no-repeat 0 0;
}
ul.quickbuttons li.notify_button
{
background: url(../images/buttons/notify_sm.gif) no-repeat 0 0;
}
ul.quickbuttons li.inline_mod_check
{
margin: 0 0 0 5px;
}
.generic_tab_strip
{
margin: 0 1em 2em;
}
.generic_tab_strip .buttonlist
{
float: left !important;
}
ul#navigation
{
margin: 0;
font-size: 0.9em;
padding: 1em 0.4em;
}
ul#navigation li
{
float: none;
font-size: 0.95em;
display: inline;
}
#mainframe
{
font-size: 85%;
width: 92%;
min-width:975px;
margin: 0 auto;
}
h1#forum_name
{
padding: 0.6em 0 0.6em 0;
margin: 0;
font-family: Verdana, helvetica, sans-serif;
font-size: 135%;
color: #fff;
}
#greeting_section
{
padding: 0.7em 0.4em 0.7em 0.4em;
clear: both;
}
#greeting_section li
{
font-weight: normal;
}
#greeting_section li#name
{
padding-left: 0.5em;
}
#greeting_section li em
{
font-style: normal;
font-weight: bold;
}
#user_section
{
padding: 1px;
margin: 1px 0 0 0;
font-size: 90%;
}
#user_section ul, #user_section form
{
padding: 0.5em 0.7em 0.5em 0.7em;
}
#user_section #myavatar
{
padding: 0.7em;
border-right: 1px solid #adadad;
margin: 0 0.5em 0 0;
float: left;
}
#news_section
{
clear: both;
font-size: 0.8em;
padding: 0.5em 1em 0.5em 1em;
}
#random_news h3
{
margin-right: 1em;
font-size: 0.85em;
display: inline;
}
#random_news p
{
margin: 0;
padding: 0;
display: inline;
}
.main_menu
{
padding-left: 1em;
}
.main_menu ul
{
list-style: none;
padding: 0;
margin: 0;
background: url(../images/maintab_first.gif) no-repeat bottom left;
padding-left: 10px;
}
.main_menu li
{
margin: 0;
padding: 0;
display: inline;
}
.main_menu li a
{
float: left;
display: block;
color: #fff;
font-size: 0.8em;
font-family: tahoma, sans-serif;
text-transform: uppercase;
}
.main_menu li a:hover
{
color: #e0e0ff;
text-decoration: none;
}
.main_menu li a span
{
background: url(../images/maintab_back.gif) repeat-x bottom left;
display: block;
padding: 0.1em 0.5em 0.5em 0.5em;
}
.main_menu li.last a span
{
background: url(../images/maintab_last.gif) no-repeat bottom right;
padding: 0.1em 1em 0.5em 0.5em;
}
.main_menu li.active a span em
{
padding: 0.1em 0.5em 0.5em 0.5em;
display: block;
font-style: normal;
background: url(../images/maintab_active_back.gif) repeat-x bottom right;
}
.main_menu li.active a span
{
background: url(../images/maintab_active_first.gif) no-repeat bottom left;
padding: 0 0 0 8px;
}
.main_menu li.last.active
{
float: left;
background: url(../images/maintab_last.gif) no-repeat bottom right;
padding: 0 8px 0 0;
}
.main_menu li.lastactive
{
float: left;
padding: 0 8px 0 0;
background: url(../images/maintab_last.gif) no-repeat bottom right;
}
.main_menu li.active a
{
background: url(../images/maintab_active_last.gif) no-repeat bottom right;
padding-right: 8px;
}
ul.linktree
{
clear: both;
width: 100%;
list-style: none;
margin: 0;
overflow: hidden;
padding-left:10px;
}
ul.linktree li
{
float: left;
padding: 0 0.5em 0 0;
font-size: 12px;
}
ul.linktree li a
{
color: #000;
}
ul.linktree li a:hover
{
color: #000;
}
ul.linktree li span
{
}
#footerarea
{
text-align: right;
}
#footerarea ul
{
margin: 0 auto 0 auto;
}
#footerarea ul li
{
text-align: center;
display: inline;
border-right: 1px solid #888;
margin: 0;
padding: 0 4px 0 2px;
}
#footerarea ul li.copywrite
{
display: block;
line-height: 0;
font-size: small;
padding: 1em;
}
#footerarea ul li.copywrite, #footerarea ul li.last
{
border-right: none;
}
#footerarea p
{
clear: both;
text-align: left;
padding-left: 0.5em;
}
p#show_loadtime
{
display: block;
text-align: center;
}
#upshrink, #advsearch
{
margin: 0 1ex;
}
table.table_list
{
width: 100%;
}
table.table_list p
{
padding: 0;
margin: 0;
}
table.table_list td,table.table_list th
{
padding: 5px;
}
table.table_list tbody.header td
{
padding: 0;
}
table.table_list tbody.content td.stats
{
font-size: 90%;
width: 15%;
text-align: center;
}
table.table_list tbody.content td.lastpost
{
line-height: 1.2em;
font-size: 85%;
width: 24%;
}
table.table_list tbody.content td.icon
{
text-align: center;
width: 6%;
}
h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg, div.titlebg, .table_list tbody.header td
{
overflow: hidden;
line-height: 2em;
font-weight: bold;
}
h3.titlebg, h4.titlebg
{
border-left: 1px solid #adadad;
border-right: 1px solid #adadad;
}
h3.titlebg, h4.catbg
{
padding: 0 0.5em !important;
}
h3.catbg img.icon, div.titlebg img.icon, h3.catbg img
{
float: left;
margin: 5px 8px 0 0;
}
.titlebg, tr.titlebg th, tr.titlebg td, .titlebg2, tr.titlebg2 th, tr.titlebg2 td
{
color: #000;
font-style: normal;
background: url(../images/titlebg.jpg) #E9F0F6 repeat-x;
border-bottom: 1px solid #9baebf;
border-top: 1px solid #fff;
padding-left: 10px;
padding-right: 10px;
}
.titlebg, .titlebg a:link, .titlebg a:visited
{
font-weight: bold;
color: #000;
font-style: normal;
}
.titlebg a:hover
{
color: #404040;
}
.titlebg2 a:link, .titlebg2 a:visited
{
color: #000;
font-style: normal;
text-decoration: underline;
}
.titlebg2 a:hover
{
text-decoration: underline;
}
.catbg, tr.catbg td, .catbg3, tr.catbg3 td
{
background: url(../images/catbg.jpg) #88A6C0 repeat-x;
color: #fff;
padding-left: 10px;
padding-right: 10px;
}
.catbg2, tr.catbg2 td
{
background: url(../images/catbg2.jpg) #A1BFD9 repeat-x;
color: #fff;
padding-left: 10px;
padding-right: 10px;
}
.catbg, .catbg2, .catbg3
{
border-bottom: 1px solid #375576;
}
.catbg, .catbg2
{
font-weight: bold;
}
.catbg3, tr.catbg3 td, .catbg3 a:link, .catbg3 a:visited
{
font-size: 95%;
color: #fff;
text-decoration: none;
}
.catbg a:link, .catbg a:visited, .catbg2 a:link, .catbg2 a:visited
{
color: #fff;
text-decoration: none;
}
.catbg a:hover, .catbg2 a:hover, .catbg3 a:hover
{
color: #e0e0ff;
}
p#stats
{
text-align: right;
}
h3#newsfader
{
font-size: 1em;
}
#smfNewsFader
{
font-weight: bold;
line-height: 1.4em;
padding: 1em;
font-size: 1em;
text-align: center;
}
#upshrink_ic
{
margin-right: 2ex;
text-align: right;
}
.categoryframe
{
margin-top: 0.4em;
}
.categoryframe h3
{
margin: 0;
}
table.boardsframe
{
width: 100%;
}
table.boardsframe td.icon
{
text-align: center;
padding: 0.5em;
width: 65px;
}
table.boardsframe td.info
{
padding: 0;
}
table.boardsframe td.info h4
{
padding: 0.4em 0.4em 0 0.4em;
margin: 0;
}
table.boardsframe td.info p
{
padding: 0 0.4em 0.5em 0.4em;
margin: 0;
font-size: 0.85em;
font-family: verdana, sans-serif;
color:#444444;
}
table.boardsframe td.info p.moderators
{
font-size: 0.85em;
font-family: verdana, sans-serif;
color:#444444;
}
table.boardsframe td.stats
{
width: 8%;
vertical-align: middle;
text-align: center;
}
table.boardsframe td.lastpost
{
width: 25%;
vertical-align: top;
padding: 0.5em;
}
#posticons
{
clear: both;
width: 100%;
}
#posticons .buttonlist
{
margin-right: 1em;
float: right;
}
#smfFadeScroller
{
text-align: center;
overflow: auto;
color: #000000;
}
#infocenterframe
{
margin-top: 2em;
clear: both;
}
.infocenter_section
{
clear: both;
}
.infocenter_section p.section
{
display: block;
margin: 0;
width: 30px;
text-align: center;
float: left;
padding: 0.5em 0 0 0;
}
.infocenter_section div.sectionbody
{
margin-left: 30px;
padding: 0.3em;
border-left: 1px solid #a0a0a0;
min-height: 25px;
height: auto !important;
}
dl#infocenter_recentposts
{
float: left;
width: 100%;
padding: 0;
margin: 0;
}
dl#infocenter_recentposts dt
{
clear: left;
float: left;
padding: 0.1em;
width: 68%;
white-space: nowrap;
overflow: hidden;
}
dl#infocenter_recentposts dd
{
clear: right;
float: right;
padding: 0.1em;
width: 25%;
text-align: right;
white-space: nowrap;
overflow: hidden;
}
form#infocenter_login ul.horizlist label
{
white-space: nowrap;
font-size: 90%;
font-weight: bold;
}
#childboards table
{
width: 100%;
}
.modbuttons
{
clear: both;
width: 100%;
}
.buttonlist, .buttonlist_bottom
{
margin-right: 1em;
float: right;
}
#messageindex td.icon1, #messageindex td.icon2
{
text-align: center;
padding: 0.5em;
width: 5%;
}
#messageindex td.subject
{
padding: 0.5em;
}
#messageindex td.starter
{
text-align: center;
padding: 0.5em;
width: 14%;
}
#messageindex td.replies
{
text-align: center;
padding: 0.5em;
width: 4%;
}
#messageindex td.views
{
text-align: center;
padding: 0.5em;
width: 4%;
}
#messageindex td.lastpost
{
padding: 0.5em;
width: 22%;
}
#messageindex td.moderation
{
text-align: center;
padding: 0.5em;
width: 4%;
}
#topic_icons p
{
display: block;
padding: 0.5em 0.5em 0.1em 0.5em;
margin: 0;
border-bottom: none;
font-weight: normal !important;
}
#topic_icons ul
{
display: block;
padding: 0.5em 1em 0.1em 1em;
margin: 0;
border-bottom: none;
font-weight: normal !important;
}
#message_index_jump_to
{
margin: 2em 4em 0 2em;
}
.lastpost img
{
float: right;
}
.linked_events
{
clear: both;
margin: 1em 0;
}
.linked_events .edit_event
{
color: #f00;
}
#moderationbuttons
{
margin-left: 0.5em;
}
#postbuttons .nav, #postbuttons_lower .nav
{
margin: 0.5em 0.5em 0 0;
text-align: right;
}
#postbuttons_lower .nav
{
margin: 0 0.5em 0.5em 0;
}
#postbuttons, #postbuttons_lower
{
text-align: right;
}
h4#pollquestion
{
padding: 1em 0 1em 2em;
}
#poll_options ul.options
{
border-top: 1px solid #696969;
padding: 1em 2.5em 0 2em;
margin: 0 0 1em 0;
}
#poll_options div.submitbutton
{
clear: both;
padding: 0 0 1em 2em;
}
#poll_options div.submitbutton.border
{
border-bottom: 1px solid #696969;
margin: 0 0 1em 0;
}
#poll_options dl.options
{
border: solid #696969;
border-width: 1px 0;
padding: 1em 2.5em 0 2em;
margin: 0 0 1em 0;
}
#poll_options dl.options dt.voted
{
font-weight: bold;
}
#poll_options dl.options dd
{
margin: 0.5em 0 1em 0;
}
#poll_options p
{
margin: 0 1.5em 0.2em 1.5em;
padding: 0 0.5em 0.5em 0.5em;
}
div#pollmoderation
{
margin: -1em 0 0 2em;
padding: 0;
}
.approve_post
{
margin: 2ex;
padding: 1ex;
border: 2px dashed #cc3344;
color: #000;
font-weight: bold;
}
#forumposts h3.catbg3
{
font-weight: normal;
padding: 0.4em;
overflow: hidden;
}
#forumposts h3.catbg3 img
{
float: left;
vertical-align: middle;
}
#forumposts h3.catbg3 span
{
float: left;
padding-left: 2%;
}
#forumposts h3.catbg3 span#top_subject
{
padding-left: 9.5em;
}
.poster
{
width: 140px;
float: left; padding-left:10px;
}
.post
{
clear: right;
padding-top:10px;
}
.postarea
{
margin-left: 160px;
}
.messageicon
{
float: left;
margin: 0 0.5em 0.5em 0;
}
.messageicon img
{
padding: 6px 3px;
}
.keyinfo
{
float: left;
clear: none;
}
ul.postingbuttons
{
float: right;font-size:12px;
}
ul.postingbuttons li
{
float: left;
margin: 0 20px 0 0;
}
.modifybutton
{
float: right;
margin: 0 0.5em 0.5em 0;
}
.attachments
{
padding-top: 1em;
overflow: auto;
}
.attachments hr
{
clear: both;
margin: 1em 0 1em 0;
}
.postfooter
{
margin-left: 16em;
}
.topborder
{
border-top: 1px solid #bbb;
}
.moderatorbar
{
clear: right;
margin: 1em 0 0 160px;
}
#pollmoderation, #moderationbuttons_strip
{
float: left;
}
#quickReplyOptions #quickReplyWarning
{
background: #ffffff;
border: none;
text-align: left;
margin: 0;
width: 25%;
float: left;
}
#quickReplyOptions #quickReplyContent
{
background: #ffffff;
text-align: left;
float: left;
width: 100%;
}
#quickReplyOptions #quickReplyContent textarea, #quickReplyOptions #quickReplyContent input
{
background: #ffffff;
margin-bottom: .5em;
}
#quickReplyWarning
{
background: #ffffff;
width: 20%;
float: left;
padding: 0.5em 1em;
}
#quickReplyContent
{
background: #ffffff;
width: 75%;
float: right;
padding: 0.5em 0;
}
#quickReplyOptions .roundframe
{
background: #ffffff;
overflow: hidden;
}
#quickReplyOptions div { 
    text-align: center;
}
#quickReplyOptions #quickReplyWarning
{
background: #ffffff;
width: 68%; 
margin: 0 17% 0 15%;
}
#quickReplyOptions #quickReplyContent form#postmodify
{
background: #ffffff;
    margin: 0;
padding: 0;
}
#quickReplyOptions #quickReplyContent form#postmodify div
{
background: #ffffff;
    margin: 0;
padding: 4px 0;
}
#quickReplyOptions #quickReplyContent form#postmodify div#message_resizer
{
background: #ffffff;
    margin: 0 15% 5px 15%;
padding: 2px 0;
}
#qr_buttons
{
background: #ffffff;
    text-align: center;
}
#quickReplyOptions #quickReplyContent input
{
background: #ffffff;
margin-bottom: 10px;
}
#quickReplyOptions div { 
    text-align: center;
}
#quickReplyOptions #quickReplyWarning
{
background: #ffffff;
width: 68%; 
margin: 0 17% 0 15%;
}
#quickReplyOptions #quickReplyContent form#postmodify
{
    margin: 0;
padding: 0;
}
#quickReplyOptions #quickReplyContent form#postmodify div
{
    margin: 0;
padding: 4px 0;
}
#quickReplyOptions #quickReplyContent form#postmodify div#message_resizer
{
    margin: 0 15% 5px 15%;
padding: 2px 0;
}
#qr_buttons
{
    text-align: center;
}
#quickReplyOptions #quickReplyContent input
{
margin-bottom: 10px;
}
#display_jump_to
{
clear: both;
padding: 5px;
}
#forumposts .post_separator
{
display: none;
}
form#postmodify .roundframe
{
padding: 0 12%;
}
#post_header
{
background: #E3E3E3;
margin-bottom: 0.5em;
border-bottom: 1px solid #666;
padding: 0.5em;
overflow: hidden;
}
#post_header dt
{
background: #e3e3e3;
float: left;
margin: 0;
padding: 0;
width: 15%;
margin: .3em 0;
font-weight: bold;
}
#post_header dd
{
background: #e3e3e3;
float: left;
margin: 0;
padding: 0;
width: 83%;
margin: .3em 0;
}
#post_header img
{
vertical-align: middle;
}
ul.post_options
{
margin: 0 0 0 1em;
padding: 0;
list-style: none;
overflow: hidden;
}
ul.post_options li
{
margin: 0.2em 0;
width: 49%;
float: left;
}
#postAdditionalOptionsHeader
{
margin-top: 1em;
}
#postMoreOptions
{
border-bottom: 1px solid #666;
padding: 0.5em;
}
#postAttachment, #postAttachment2
{
overflow: hidden;
margin: .5em 0;
padding: 0;
border-bottom: 1px solid #666;
padding: 0.5em;
}
#postAttachment dd, #postAttachment2 dd
{
margin: .3em 0 .3em 1em;
}
#postAttachment dt, #postAttachment2 dt
{
font-weight: bold;
}
#postAttachment3
{
margin-left: 1em;
}
#post_confirm_strip, #shortcuts
{
padding: 1em 0 0 0;
}
.post_verification
{
margin-top: .5em;
}
.post_verification #verification_control
{
margin: .3em 0 .3em 1em;
}
#bbcBox_message
{
background: #ffffff;
}
#bbcBox_message div
{
background: #E3E3E3;
vertical-align: top;
}
.richedit_resize
{
margin: 0 auto;
}
#bbcBox_message div img
{
background: #E3E3E3;
margin: 0 1px 0 0;
vertical-align: top;
}
#bbcBox_message select
{
background: #ffffff;
margin: 0 2px;
}
#smileyBox_message
{
background: #E3E3E3;
margin: 0.75em 0 0.5em 0;
}
#post_event .roundframe
{
padding: 1% 12%;
}
#post_event fieldset
{
margin-bottom: 0.5em;
border: none;
border-bottom: 1px solid #666;
padding: 0.5em;
clear: both;
}
#post_event legend
{
font-weight: bold;
color: #000;
}
#post_event div.event_options
{
width: 49%;
float: left;
}
#post_event ul.event_main, ul.event_options
{
padding: 0;
overflow: hidden;
}
#post_event ul.event_main li
{
list-style-type: none;
margin: 0.2em 0;
width: 49%;
float: left;
}
#post_event ul.event_options
{
margin: 0;
padding: 0 0 .7em .7em;
}
#post_event ul.event_options li
{
list-style-type: none;
margin: 0.3em 0 0 0;
}
#edit_poll fieldset
{
margin-bottom: 0.5em;
border: none;
border-bottom: 1px solid #666;
padding: 0.5em;
clear: both;
}
#edit_poll legend
{
font-weight: bold;
color: #000;
}
#edit_poll ul.poll_main, dl.poll_options
{
overflow: hidden;
padding: 0 0 0 .7em;
list-style: none;
}
#edit_poll ul.poll_main li
{
margin: 0.2em 0;
}
#edit_poll dl.poll_options dt
{
width: 35%;
}
#edit_poll dl.poll_options dd
{
width: 63%;
}
.readbuttons
{
clear: both;
width: 100%;
}
.buttonlist, .buttonlist_bottom
{
margin-right: 1em;
float: right;
}
#move_topic dl
{
margin-bottom: 0;
}
.move_topic
{
width: 710px;
margin: auto;
text-align: left;
}
div.move_topic fieldset
{
margin: 0.5em 0;
border: 1px solid #cacdd3;
padding: 0.5em;
}
fieldset.send_topic
{
margin-bottom: 0.5em;
border: none;
padding: 0.5em;
}
dl.send_topic
{
margin-bottom: 0;
}
dl.send_mail dt
{
width: 35%;
}
dl.send_mail dd
{
width: 64%;
}
div#selected, div#not_selected
{
width: 49%;
}
ul.split_messages li.windowbg, ul.split_messages li.windowbg2
{
border: 1px solid #adadad;
padding: 1em;
margin: 1px;
}
ul.split_messages li a.split_icon
{
padding: 0 0.5em;
}
ul.split_messages div.post
{
padding: 1em 0 0 0;
border-top: 1px solid #fff;
}
ul.merge_topics li
{
list-style-type: none;
}
dl.merge_topic dt
{
width: 25%;
}
dl.merge_topic dd
{
width: 74%;
}
fieldset.merge_options
{
margin-bottom: 0.5em;
}
fieldset.merge_options legend
{
font-weight: bold;
}
.custom_subject
{
margin: 0.5em 0;
}
.login
{
width: 540px;
margin: 0 auto;
}
.login dl
{
overflow: auto;
clear: right;
}
.login dt, .login dd
{
margin: 0 0 0.4em 0;
width: 44%;
padding: 0.1em;
}
.login dt
{
float: left;
clear: both;
text-align: right;
font-weight: bold;
}
.login dd
{
width: 54%;
float: right;
text-align: left;
}
.login p
{
text-align: center;
}
.login h3 img
{
float: left;
margin: 4px 0.5em 0 0;
}
.register_error
{
border: 1px dashed red;
padding: 5px;
margin: 0 1ex 1ex 1ex;
}
.register_error span
{
text-decoration: underline;
}
dl.register_form
{
margin: 0;
clear: right;
overflow: auto;
}
dl.register_form dt
{
font-weight: normal;
float: left;
clear: both;
width: 50%;
margin: 0.5em 0 0 0;
}
dl.register_form dt strong
{
font-weight: bold;
}
dl.register_form dt span
{
display: block;
}
dl.register_form dd
{
float: left;
width: 49%;
margin: 0.5em 0 0 0;
}
#confirm_buttons
{
text-align: center;
padding: 1em 0;
}
.coppa_contact
{
padding: 4px;
width: 32ex;
background-color: #fff;
color: #000;
margin-left: 5ex;
border: 1px solid #000;
}
#maintenance_mode
{
width: 75%;
min-width: 520px;
text-align: left;
}
#maintenance_mode img.align_left
{
margin-right: 1em;
}
h3.titlebg img
{
vertical-align: middle;
margin-right: 0.5em;
}
tr.titlebg td
{
padding-left: 0.7em;
}
#admin_menu
{
min-height: 2em;
padding-left: 0;
}
#admin_content
{
clear: left;
}
#admin_login .centertext
{
padding: 1em;
}
#admin_login .centertext .error
{
padding: 0 0 1em 0;
}
.left_admmenu, .left_admmenu ul, .left_admmenu li
{
padding: 0;
margin: 0;
list-style: none;
}
#left_admsection
{
background-color: #ecedf3;
padding: 1px;
border: 1px solid #ADADAD;
width: 160px;
float: left;
margin-right: 10px;
}
.adm_section h4.titlebg
{
font-size: 95%;
margin-bottom: 5px;
}
.left_admmenu li
{
padding: 0 0 0 0.5em;
}
.left_admmenu
{
margin-bottom: 1.1em;
}
#main_admsection
{
margin-left: 174px;
}
tr.windowbg td, tr.windowbg2 td, tr.approvebg td, tr.highlight2 td
{
padding: 0.3em 0.7em;
}
#credits p
{
padding: 0;
font-style: italic;
margin: 0;
}
.topic_table table
{
width: 100%;
}
.topic_table .icon1, .topic_table .icon2, .topic_table .stats
{
text-align: center;
}
#topic_icons
{
margin-top: 1em;
}
#topic_icons .description
{
margin: 0;
}
.topic_table table thead
{
border-bottom: 1px solid #fff;
}
.topic_table td
{
font-size: 1em;
}
.topic_table td.subject
{
padding: 4px;
}
.topic_table td.subject p, .topic_table td.stats, .topic_table td.lastpost
{
font-size: 0.85em;
padding: 0;
margin: 0;
}
.topic_table td.lastpost, .topic_table td.lastpost
{
font-size: 0.9em;
line-height: 100%;
padding: 4px;
}
.topic_table td.stickybg2
{
background-image: url(../images/icons/quick_sticky.gif);
background-repeat: no-repeat;
background-position: 98% 4px;
}
.topic_table td.lockedbg2
{
background-image: url(../images/icons/quick_lock.gif);
background-repeat: no-repeat;
background-position: 98% 4px;
}
.topic_table td.lastpost
{
background-image: none;
}
#fatal_error
{
border: 1px solid #aaa;
}
.errorbox
{
padding: 1em;
border: 1px solid #cc3344;
color: #000;
background-color: #ffe4e9;
margin: 1em 0;
}
.errorbox h3
{
padding: 0;
margin: 0;
font-size: 1.1em;
text-decoration: underline;
}
.errorbox p
{
margin: 1em 0 0 0;
}
.errorbox p.alert
{
padding: 0;
margin: 0;
float: left;
width: 1em;
font-size: 1.5em;
}
dl
{
overflow: auto;
margin: 0;
padding: 0;
}
#profileview
{
padding: 1px;
border: 1px solid #696969;
background-color: #ecedf3;
}
#profileview .content
{
border: none;
}
#basicinfo .content
{
padding: 1em;
}
#detailedinfo .content
{
padding: 0.7em 1.2em;
border-left: 1px solid #aaa;
}
#basicinfo
{
width: 20%;
float: left;
}
#detailedinfo
{
width: 78%;
float: right;
}
#basicinfo h4
{
font-size: 135%;
font-weight: 100;
line-height: 105%;
white-space: pre-wrap; 
word-wrap: break-word; 
overflow: hidden;
}
#basicinfo h4 span.position
{
font-size: 80%;
font-weight: 100;
display: block;
}
#basicinfo img.avatar
{
display: block;
margin: 10px 0 0 0;
}
#basicinfo ul
{
list-style-type: none;
margin: 10px 0 0 0;
}
#basicinfo ul li
{
display: block;
float: left;
margin-right: 5px;
height: 20px;
}
#basicinfo span#userstatus
{
display: block;
clear: both;
}
#basicinfo span#userstatus img
{
vertical-align: middle;
}
#detailedinfo div.content dl, #tracking div.content dl
{
clear: right;
overflow: auto;
margin: 0 0 18px 0;
padding: 0 0 15px 0;
border-bottom: 1px solid #ccc;
}
#detailedinfo div.content dt, #tracking div.content dt
{
width: 30%;
float: left;
margin: 0 0 3px 0;
padding: 0;
font-weight: bold;
clear: both;
}
#detailedinfo div.content dd, #tracking div.content dd
{
width: 70%;
float: left;
margin: 0 0 3px 0;
padding: 0;
}
#detailedinfo div.content dl.noborder
{
border-bottom: 0;
}
#detailedinfo div.content dt.clear
{
width: 100%;
}
.signature, .custom_fields_above_signature, .attachments
{
width: 98%;
clear: right;
overflow: auto;
border-top: 1px solid #D6D6D6;
}
.signature h5
{
font-size: 100%;
margin-bottom: 10px;
}
#personal_picture
{
display: block;
margin-bottom: 0.3em;
}
#avatar_server_stored div
{
float: left;
}
#main_admsection #basicinfo, #main_admsection #detailedinfo
{
width: 100%;
}
#main_admsection #detailedinfo .content
{
border: none !important;
}
#main_admsection #basicinfo
{
border-bottom: 1px solid #ccc;
}
#main_admsection #basicinfo h4
{
float: left;
}
#main_admsection #basicinfo img.avatar
{
float: right;
vertical-align: top;
}
#main_admsection #basicinfo ul
{
clear: left;
padding-top: 10px;
}
#main_admsection #basicinfo span#userstatus
{
clear: left;
}
#main_admsection #basicinfo p#infolinks
{
display: none;
clear: both;
}
#main_admsection #basicinfo .botslice
{
clear: both;
}
div#profile_error, div#profile_success
{
margin: 0 0 1em 0;
padding: 1em 2em;
border: 1px solid;
}
div#profile_error
{
border-color: red;
color: red;
background: #fee;
}
div#profile_error span
{
text-decoration: underline;
}
div#profile_success
{
border-color: green;
color: green;
background: #efe;
}
#generalstats div.content dt
{
width: 50%;
float: left;
margin: 0 0 3px 0;
padding: 0;
font-weight: bold;
clear: both;
}
#generalstats div.content dd
{
width: 50%;
float: left;
margin: 0 0 3px 0;
padding: 0;
}
.activity_stats
{
margin: 0;
padding: 0;
list-style: none;
}
.activity_stats li
{
width: 4.16%;
float: left;
}
.activity_stats li span
{
display: block;
border: solid #000;
border-width: 1px 1px 0 0;
text-align: center;
}
.activity_stats li.last span
{
border-right: none;
}
.activity_stats li div.bar
{
margin: 0 auto;
width: 15px;
}
.activity_stats li div.bar div
{
background: url('../images/bar.gif');
}
.activity_stats li div.bar span
{
position: absolute;
top: -1000em;
left: -1000em;
}
#popularposts
{
width: 50%;
float: left;
}
#popularactivity
{
width: 50%;
float: right;
}
#popularposts div.content dt, #popularactivity div.content dt
{
width: 65%;
float: left;
margin: 0 0 3px 0;
padding: 0;
font-weight: bold;
clear: both;
}
#popularposts div.content dd, #popularactivity div.content dd
{
width: 35%;
float: left;
margin: 0 0 3px 0;
padding: 0;
}
.profile_pie
{
background-image: url(../images/stats_pie.png);
float: left;
height: 20px;
width: 20px;
margin: 0 1em 0 0;
padding: 0;
text-indent: -1000em;
}
.time
{
float: right;
}
.counter
{
margin: 0 0 0 0;
padding: 0.2em 0.5em 0.1em 0.2em;
font-size: 2.2em;
font-weight: bold;
color: #354c5f;
float: left;
}
.list_posts
{
border-top: 1px solid #adadad;
padding-top: 1em;
margin-top: 0.5em;
}
div.core_posts
{
border: 1px solid #adadad;
margin-bottom: 3px;
}
div.core_posts div.content 
{
background: none;
border: none;
}
.topic h4
{
margin: 3px 0;
}
.mod_icons
{
text-align: right;
margin-right: 1em;
}
#permissions dt
{
width: 48%;
float: left;
line-height: 1.2em;
margin: 0;
padding: 1%;
clear: both;
border-top: 1px solid #fff;
}
#permissions dd
{
width: 48%;
float: left;
margin: 0;
padding: 1%;
border-top: 1px solid #fff;
}
#tracking div.content dl
{
border-bottom: 0;
margin: 0;
padding: 0;
}
#creator dl
{
margin: 0;
}
#creator dt
{
width: 40%;
float: left;
clear: both;
margin: 0 0 10px 0;
}
#creator dd
{
float: left;
width: 60%;
margin: 0 0 10px 0;
}
.ignoreboards
{
margin: 0;
padding: 0;
width: 49%;
overflow: auto;
}
.ignoreboards a
{
text-decoration: underline;
}
.ignoreboards ul
{
overflow: auto;
margin: 0 0 0 1em;
padding: 0;
}
.ignoreboards li
{
list-style: none;
float: left;
clear: both;
}
#theme_settings
{
overflow: auto;
margin: 0;
padding: 0;
}
#theme_settings li
{
list-style: none;
margin: 10px 0;
padding: 0;
}
#paid_subscription
{
width: 100%;
}
#paid_subscription dl.settings
{
margin-bottom: 0;
}
#paid_subscription dl.settings dd, #paid_subscription dl.settings dt
{
margin-bottom: 4px;
}
#pick_theme
{
width: 100%;
float: left;
}
#statistics
{
padding-bottom: 0.5em;
}
#statistics h4.titlebg
{
text-align: center;
margin-bottom: 5px;
}
#stats_left, #top_posters, #top_topics_replies, #top_topics_starter
{
float: left;
width: 49.5%;
}
#stats_right, #top_boards, #top_topics_views, #most_online
{
float: right;
width: 49.5%;
}
dl.stats
{
clear: both;
overflow: hidden;
margin: 0;
padding: 0;
}
dl.stats dt
{
width: 49%;
float: left;
margin: 0 0 4px 0;
line-height: 16px;
padding: 0;
clear: both;
font-size: 1em;
}
dl.stats dd
{
text-align: right;
width: 50%;
font-size: 1em;
float: right;
margin: 0 0 4px 0;
line-height: 16px;
padding: 0;
}
.stats_bar
{
float: left;
background-image: url(../images/bar_stats.png);
height: 16px;
font-size: 0.9em;
display: block;
text-align: left;
color: #fff;
font-weight: bold;
background-position: top center;
}
.stats_bar span
{
padding-left: 2px;
}
#personal_messages
{
padding: 1px;
}
#personal_messages #top_subject
{
padding-left: 11.75em !important;
}
#personal_messages div.labels
{
padding: 0 1em 0 0;
}
#personal_messages .capacity_bar
{
background: #fff;
border: 1px solid #000;
height: 7px;
width: 75%;
margin: 0 auto;
}
#personal_messages .capacity_bar div
{
border: none;
height: 7px;
}
#personal_messages .capacity_bar div.empty
{
background: #468008;
}
#personal_messages .capacity_bar div.filled
{
background: #EEA800;
}
#personal_messages .capacity_bar div.full
{
background: #A53D05;
}
#personal_messages .reportlinks
{
padding: 0.5em 1.3em;
}
.calendar_table
{
margin-bottom: 0.7em;
}
.calendar_today
{
background-color: #fff;
}
#month_grid
{
width: 200px;
text-align: center;
float: left;
}
#month_grid table
{
width: 200px;
border-collapse: collapse;
border: 1px solid #adadad;
}
#month_grid table td, #month_grid table th
{
border: 1px solid #adadad;
}
#main_grid table
{
width: 100%;
padding-bottom: 4px;
border-collapse: collapse;
border: 1px solid #adadad;
}
#main_grid table td, #main_grid table th
{
border: 1px solid #adadad;
}
#main_grid table h3.catbg
{
text-align: center;
border-top: 1px solid #adadad;
border-bottom: none;
}
#main_grid table h4
{
border: none;
}
#main_grid table.weeklist td.windowbg
{
text-align: center;
height: 49px;
width: 25px;
font-size: large;
padding: 0 7px;
border-bottom: 1px solid #adadad;
}
#main_grid table.weeklist td.weekdays
{
height: 49px;
width: 100%;
padding: 4px;
text-align: left;
vertical-align: middle;
border-right: 1px solid #adadad;
border-bottom: 1px solid #adadad;
}
#main_grid h3.weekly
{
text-align: center;
padding-left: 0;
font-size: large;
height: 29px;
}
#main_grid h3 span.floatleft, #main_grid h3 span.floatright
{
display: block;
}
#main_grid table th.days
{
width: 14%;
}
#main_grid table td.weeks
{
vertical-align: middle;
text-align: center;
}
#main_grid table td.days
{
vertical-align: top;
}
a.modify_event
{
color: red;
}
span.hidelink
{
font-style: italic;
}
#calendar_navigation
{
text-align: center;
}
#calendar .buttonlist_bottom
{
border-bottom: 1px solid #adadad;
padding: 0 0 0 1ex;
margin: 0 0 1ex 0;
}
#mlist_search
{
margin: auto;
width: 400px;
}
#simple_search p
{
padding: 0.5em;
}
#simple_search, #simple_search p, #advanced_search
{
text-align: center !important;
margin: 0;
}
#search_error
{
font-style: italic;
padding: 0.3em 1em;
}
#search_term_input
{
font-size: 115%;
margin: 0 0 1em;
}
#searchform fieldset
{
text-align: left;
padding: 0;
margin: 0;
border: none;
}
fieldset#advanced_search .roundframe
{
border-bottom: none !important;
}
#advanced_search dl#search_options
{
margin: 0 auto;
width: 600px;
padding-top: 1em;
overflow: hidden;
}
#advanced_search dt
{
clear: both;
float: left;
padding: 0.2em;
text-align: right;
width: 20%;
}
#advanced_search dd
{
width: 75%;
float: left;
padding: 0.2em;
margin: 0 0 0 0.5em;
text-align: left;
}
#searchform p.clear
{
clear: both;
}
#searchform fieldset div#searchBoardsExpand ul
{
overflow: auto;
margin: 0 0 0 1em;
padding: 0;
width: 48%;
}
#searchform fieldset div#searchBoardsExpand ul ul
{
width: auto;
}
#searchform fieldset div#searchBoardsExpand a
{
text-decoration: underline;
}
#searchform fieldset div#searchBoardsExpand li
{
list-style: none;
float: left;
clear: both;
}
#searchform fieldset p
{
padding: 4px;
text-align: left;
margin-top: 5px;
}
.pagelinks
{
padding: 0.5em;
}
.topic_table td blockquote, .topic_table td .quoteheader
{
margin: 0.5em;
}
.search_results_posts
{
overflow: hidden;
}
.search_results_posts .inner
{
padding: 0.5em 1em;
overflow: hidden;
}
.search_results_posts .windowbg2
{
margin-top: 4px;
}
.search_results_posts .buttons
{
padding: 5px 1em 0 0;
}
#helpmain
{
padding: 1em;
border: 1px solid #696969;
}
#helpmain .help_sample
{
border: 1px solid #99a;
background: #fff;
padding: 1em;
overflow: auto;
margin-bottom: 1em;
}
#helpmain .help_sample .linktree
{
font-weight: bold;
}
#helpmain p
{
margin: 0 0 1.5em 0;
line-height: 1.5em;
}
#helpmain ol
{
font-weight: bold;
list-style-type: disc;
margin-bottom: 1em;
margin-top: 1em;
line-height: 1.5em;
}
#helpmain ol.la
{
font-weight: normal;
list-style-type: circle;
margin: 0.5em 0 1em 0;
padding-left: 1.5em;
}
ul.basic_helplist
{
padding: 0.8em 1.5em;
line-height: 1.5em;
}
#helpmain .boardsframe p
{
margin: 0;
}
#helpmain #messageindex
{
clear: right;
}
#helpmain .buttonlist_bottom ul, #helpmain .buttonlist ul
{
margin: 0 !important;
padding: 0 0 0 1em !important;
}
#helpmain .buttonlist_bottom ul li, #helpmain .buttonlist ul li
{
margin: 0 0.2em 0 0 !important;
padding: 0 !important;
}
.headerpadding
{
padding: 0.5em;
}
.smallpadding
{
padding: 0.2em;
}
.largepadding
{
padding: 0.7em;
}
.marginbottom
{
margin-bottom: 1em;
}
.margintop
{
margin-top: 1em !important;
}
span.plainstyle
{
font-weight: normal;
font-style: normal;
}
ul.horizlist
{
width: 100%;
}
ul.horizlist li
{
float: left;
padding: 0.2em 0.4em 0.2em 0.4em;
vertical-align: top;
}
ul.nolist li
{
display: inline;
}
.clearfix:after
{
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix
{
display: inline-block;
}
* html .clearfix
{
height: 1%;
}
.clearfix
{
display: block;
}
.bordercolor
{
background-color: #adadad;
padding: 0;
}
.tborder
{
padding: 1px;
border: 1px solid #696969;
background-color: #fff;
}
.links {background:#e3e3e3;padding:5px;margin-top:15px;}
.bordercats {margin-top:15px;background:#e3e3e3;padding:15px;border-top:3px solid #422d5d;}
.catname {font-size:20px;color:#422d5d;padding-bottom:15px;}
.boardsframe td {background:#f0f0f0;}
td.info a {color:#422d5d;}
.trborder td {border-top:1px solid #e3e3e3;}
.childboards {padding-left:4px;}
.childboards a {color:#422d5d;}
#forumposts {margin-top:15px;background:#e3e3e3;padding:15px;border-top:3px solid #422d5d;}
.postinfo {padding:4px;}
.postinfo img {width:0;height:0;}
.postinfo h5 a {color:#422d5d;font-size:14px;}
.postitem {margin-top:4px;font-family:Tahoma;border:1px solid #D6D6D6;}
.postpad {padding:4px;}
.postname {background:#908f8f;padding:5px 10px;color:#e3e3e3;font-size:14px;}
.postbuttons {padding-bottom:10px;}
.postbuttons div {margin:0;}
#postbuttons div.nav {margin:0;}
.postbuttons div.buttonlist_bottom ul {background:#f0f0f0;padding:5px 7px 7px;}
.postbuttons div.buttonlist_bottom ul  a {color:#000;text-transform:none;font-size:0.85em;}
.postbuttons div.buttonlist_bottom ul  a span {background:none;}
#postbuttons_lower {padding-top:10px;}
#postbuttons_lower div.buttonlist ul {background:#f0f0f0;padding:7px 7px 4px;}
#postbuttons_lower div.buttonlist ul  a {color:#000;text-transform:none;font-size:0.85em;}
#postbuttons_lower div.buttonlist ul  a span {background:none;}
#postbuttons_lower div, #postbuttons_lower .nav {margin:0;}
#header1 {height:53px;background:url(../images/headerbg.png) repeat-x;}
#alogo {width:140px;height:53px;display:inline-block;background:url(../images/logo1.png) no-repeat;}
#headcontent {height:46px;float:right;padding-top:7px;text-align:right;}
#headrow1 {clear:both;}
#headrow2 {text-align:right;clear:both;padding-top:11px;}
#headrow2 span {padding:0 10px;}
#headrow2 a {color:#343434;text-decoration:none;font-size:12px;}
.navigation {list-style-type:none;font-size:14px;float:right;margin:0;margin-top:2px;}
.navigation li {float:left;padding:0 10px;}
.navigation li a{color:#343434;text-decoration:none;}
.navigation li.active a{color:#fff;}
#messageindex {border-top:3px solid #422d5d;background:#e3e3e3;padding:15px;margin-top:15px;}
#childboards{border-top:3px solid #422d5d;background:#e3e3e3;padding:15px;margin-top:15px;}
#messageindex h3 {padding-left:15px;}
.messagesth {background:#908f8f;}
.messagesth a {color:#e3e3e3;}
#messageindex td {border-bottom:1px solid #e3e3e3;color:#636363;}
#messageindex  td.subject a {color:#422d5d;}
.sticky td {background:#E0E1E8;}
#messageindex div.buttonlist_bottom {margin:0;margin-bottom:5px;}
#messageindex div.buttonlist_bottom  ul {background:#f0f0f0;padding:5px;}
#messageindex div.buttonlist_bottom  ul a {color:#000;text-decoration:underline;text-transform:none;font-size:12px;}
#messageindex div.buttonlist_bottom  ul span {background:none;}
#messageindex div.buttonlist {margin:0;margin-top:5px;}
#messageindex div.buttonlist ul {background:#f0f0f0;padding:5px;}
#messageindex div.buttonlist ul a {color:#000;text-decoration:underline;text-transform:none;font-size:12px;}
#messageindex div.buttonlist  ul span {background:none;}
.toppad {padding-top:10px;}
.botpad {padding-top:10px;}
.statblock {border-top:3px solid #422d5d;background:#e3e3e3;padding:15px;margin-top: 15px;}
.statblock h4 {color:#422d5d;font-size:20px;padding-bottom:15px;}
.recentblock {border-top:3px solid #422d5d;background:#e3e3e3;padding:15px;}
.recentblock h4 {color:#422d5d;font-size:20px;padding-bottom:15px;}
.recentblock ul {list-style-type: none;padding-left:0;padding-bottom:15px;}
.recentblock li {clear:both;padding-top:3px;}
.recentblock li a {color:#000;text-decoration: none;font-size: 12px;}
.recentblock li span {color:#636363;float:right;font-size:10px;text-align: right;}
.maintd {vertical-align: top;}
.sidetd {vertical-align: top;padding-top:15px;padding-left:15px;width:270px;background: #e3e3e3;}
.userblock {border-top:3px solid #422d5d;background:#e3e3e3;padding:15px;margin-top:15px;}
.userblock h4 {color:#422d5d;font-size:20px;padding-bottom:15px;}
.privet {color:black;}
#overpoll {}
#poll div.buttonlist {margin:0;margin-top:5px;}
#poll div.buttonlist ul {background:#f0f0f0;padding:5px;}
#poll div.buttonlist ul a {color:#000;text-decoration:underline;text-transform:none;font-size:12px;}
#poll div.buttonlist  ul span {background:none;}
.keyinfo div.smalltext {color:#636363;font-size:12px;}
ul.postingbuttons a {color:#636363;}
ul.postingbuttons strong {font-weight:normal;font-size:11px;}
.smallgrey {font-size:11px;}
.grayblock {background:#E3E3E3;margin-top:15px;}
#quickreplybox{background:#E3E3E3;border-top:3px solid #422D5D;margin-top:15px;padding:15px;}
.ban img {border:2px solid #F00;}
.pick img {border:2px solid #090;}
small {font-size:11px;}
ul.postingbuttons strong {font-weight:normal;font-size:11px;}
.smallgrey {font-size:11px;}
.grayblock {margin-top:15px;}
#quickreplybox{margin-top:15px;padding:15px;}
.ban img {border:2px solid #F00;}
.pick img {border:2px solid #090;}
small {font-size:11px;}
#bodyarea{background: #E3E3E3;}
.l_green_div {height:498px;background:#e3e3e3;}
img[src*="http://prodota.ru/forum2/Themes/black_theme/images/on.gif"]{
    width:0;
    height:50px;
    padding-right:40px;
    background:transparent url(http://prodota.ru/forum2/Themes/core/images/on.gif) center no-repeat;
}
img[src*="http://prodota.ru/forum2/Themes/black_theme/images/off.gif"]{
    width:0;
    height:50px;
    padding-right:40px;
    background:transparent url(http://prodota.ru/forum2/Themes/core/images/off.gif) center no-repeat;
}
img[src*="http://prodota.ru/forum2/Themes/black_theme/images/russian-utf8/new.gif"]{
    width:0 !important;
    height:11px !important;
    padding-right:25px !important;
    background:transparent url(http://prodota.ru/forum2/Themes/core/images/russian-utf8/new.gif) no-repeat;
}
img[src*="http://prodota.ru/forum2/Themes/black_theme/images/new_some.png"]{
    width:0;
    height:50px;
    padding-right:40px;
    background:transparent url(http://prodota.ru/forum2/Themes/core/images/new_some.png) center no-repeat;
}
img[src*="http://prodota.ru/forum2/Themes/black_theme/images/new_none.png"]{
    width:0;
    height:50px;
    padding-right:40px;
    background:transparent url(http://prodota.ru/forum2/Themes/core/images/new_none.png) center no-repeat;
}
img[src*="http://prodota.ru/forum2/Themes/black_theme/images/on.png"]{
    width:0;
    height:50px;
    padding-right:40px;
    background:transparent url(http://prodota.ru/forum2/Themes/core/images/on.gif) center no-repeat;
}
img[src*="http://prodota.ru/forum2/Themes/black_theme/images/on2.png"]{
    width:0;
    height:50px;
    padding-right:40px;
    background:transparent url(http://prodota.ru/forum2/Themes/core/images/off.gif) center no-repeat;
}
img[src*="http://prodota.ru/forum2/Themes/black_theme/images/off.png"]{
    width:0;
    height:50px;
    padding-right:40px;
    background:transparent url(http://prodota.ru/forum2/Themes/core/images/off.gif) center no-repeat;
}
#mainframe
{
    font-size: 85%;
    width: 92% !important;;
    min-width:975px !important;;
    margin: 0 auto;
    background:#E3E3E3 !important;
    padding-bottom: 20px !important;
}
.m_cont {width:95% !important;}
.post, .personalmessage
{
   width: 100% !important;
   font-family:Tahoma;
   line-height: 1.4em;
}
#mainframe
{
   font-size: 85%;
   width: 99% !important;
   margin: 0 auto !important;
}
table.table_list
{
   width: 100% !important;
}
#childboards table
{
   width: 100% !important;
}
.postitem {margin-top:4px;font-family:Tahoma;border:1px solid #D6D6D6; max-width:100% !important;}
#bodyarea{Width: 100% !important; min-width: 100% !important; background: #F6F6F6 !important;}
table.boardsframe strong { 
font-weight: 600;
line-height: 20px;
text-decoration: none;
font-style: normal;
font-variant: normal;
}
.editor {background: #fff !important; width:100% !important}

Поделиться сообщением


Ссылка на сообщение
Гость Anonimus

html {background: url(....jpg) bottom center no-repeat !important;}

Поделиться сообщением


Ссылка на сообщение

Всех анимешников, лолеров и игроков всеми любимой дота-2 удалить скриптиком, раздать в массы. И ггвп.  :trollface:

Поделиться сообщением


Ссылка на сообщение

 

Если кому надо увеличить размер поля ответа или редактирования сообщения (хромой)

.editor, .rich_editor_frame {

width: 100% !important;

height: 300px !important;

}

 

 

 

pWBN

 

Поделиться сообщением


Ссылка на сообщение

html {background: url(....jpg) bottom center no-repeat !important;}

у меня чет не получилось ничего  :fffuuu: короче надо эту картинку  q3Uk, :pray:

Поделиться сообщением


Ссылка на сообщение

Нужны тестеры для игнора с крестиком (пока без скрытия цитат), нужно пару юзеров с хромом и оперой. в пм.


XEeIBLg.png

Поделиться сообщением


Ссылка на сообщение
Гость Anonimus

html {background: url(....jpg) bottom center no-repeat !important;}

у меня чет не получилось ничего  :fffuuu: короче надо эту картинку  [img1]http://puu.sh/q3Uk[/img], :pray:

говноедство, не буду помогать.

Поделиться сообщением


Ссылка на сообщение

слышь а как будет картинка выглядеть?

ебани с этого кода пример

 


сосите

Поделиться сообщением


Ссылка на сообщение

Внешний вид:

 

q9yu

 

 

 

Код:

 

 

а если себе поставлю - у меня тоже админка и модерация появятся?  :vau:


0BdKg2e.png

Скрытый текст

 

Цитата

посоны

я джуса забанил

мне пиздос?

Цитата

xHjcvkA.gif

 

 

 

 

 

Поделиться сообщением


Ссылка на сообщение

Присоединяйтесь к обсуждению

Вы можете опубликовать сообщение сейчас, а зарегистрироваться позже. Если у вас есть аккаунт, войдите в него для написания от своего имени.

Гость
Ответить в тему...

×   Вставлено в виде отформатированного текста.   Восстановить форматирование

  Разрешено не более 75 эмодзи.

×   Ваша ссылка была автоматически встроена.   Отобразить как ссылку

×   Ваш предыдущий контент был восстановлен.   Очистить редактор

×   Вы не можете вставить изображения напрямую. Загрузите или вставьте изображения по ссылке.

Загрузка...

×
×
  • Создать...