99 lines
1.4 KiB
CSS
99 lines
1.4 KiB
CSS
|
/*
|
||
|
Document : forum
|
||
|
Created on : 2012.08.15., 11:40:39
|
||
|
Author : Gergely
|
||
|
Description:
|
||
|
Forum styling CSS
|
||
|
*/
|
||
|
|
||
|
.forum-lista {
|
||
|
border: 1px solid #3366ff;
|
||
|
border-collapse: collapse;
|
||
|
width: 100%;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.forum-lista thead td {
|
||
|
font-weight: bold;
|
||
|
height: 1.5em;
|
||
|
border-bottom: 2px solid #3366ff;
|
||
|
padding: 3px;
|
||
|
}
|
||
|
|
||
|
.forum-lista thead td a {
|
||
|
color: #3366ff;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.forum-lista tbody td {
|
||
|
padding: 5px;
|
||
|
border-bottom: 1px solid #3366ff;
|
||
|
}
|
||
|
|
||
|
.forum-lista tbody tr.odd td {
|
||
|
background-color: #060c16;
|
||
|
}
|
||
|
|
||
|
.forum-lista tbody tr.even td {
|
||
|
background-color: #000000;
|
||
|
}
|
||
|
|
||
|
.forum-lista tbody td a {
|
||
|
color: #3366ff;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
.post-lista {
|
||
|
border: 1px solid #3366ff;
|
||
|
border-collapse: collapse;
|
||
|
}
|
||
|
|
||
|
.post-lista td {
|
||
|
border-style: solid;
|
||
|
border-color: #3366ff;
|
||
|
border-width: 3px 1px;
|
||
|
vertical-align: top;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
|
||
|
.post-lista td.felado {
|
||
|
width: 150px !important;
|
||
|
font-size: 80%;
|
||
|
}
|
||
|
|
||
|
.post-lista td.szoveg {
|
||
|
width: 510px;
|
||
|
}
|
||
|
|
||
|
.post-lista td.szoveg div {
|
||
|
width: 510px;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
|
||
|
td.uj-post {
|
||
|
}
|
||
|
|
||
|
td.uj-post textarea {
|
||
|
width: 500px;
|
||
|
background-color: #000000;
|
||
|
color: #3366ff;
|
||
|
border-style: solid;
|
||
|
border-color: #3366ff;
|
||
|
border-width: 0 0 2px 0;
|
||
|
height: 15em;
|
||
|
}
|
||
|
|
||
|
td.uj-post p {
|
||
|
clear: both;
|
||
|
float: none;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
td.uj-post p .eszkoztar {
|
||
|
float: left;
|
||
|
}
|
||
|
|
||
|
td.uj-post p .kuldes-gomb {
|
||
|
float: right;
|
||
|
}
|