Fist commit
This commit is contained in:
@@ -0,0 +1,369 @@
|
||||
|
||||
.dataTables_wrapper {
|
||||
clear: both;
|
||||
position: relative;
|
||||
}
|
||||
.dataTables_processing {
|
||||
background-color: white;
|
||||
border: 1px solid #DDDDDD;
|
||||
color: #999999;
|
||||
font-size: 14px;
|
||||
height: 30px;
|
||||
left: 50%;
|
||||
margin-left: -125px;
|
||||
margin-top: -15px;
|
||||
padding: 14px 0 2px;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
top: 50%;
|
||||
width: 250px;
|
||||
}
|
||||
.dataTables_length {
|
||||
float: left;
|
||||
width: 40%;
|
||||
}
|
||||
.dataTables_filter {
|
||||
float: right;
|
||||
text-align: right;
|
||||
width: 50%;
|
||||
}
|
||||
.dataTables_info {
|
||||
float: left;
|
||||
width: 60%;
|
||||
}
|
||||
.dataTables_paginate {
|
||||
float: right;
|
||||
text-align: right;
|
||||
}
|
||||
.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
|
||||
color: #111111 !important;
|
||||
cursor: pointer;
|
||||
float: left;
|
||||
height: 19px;
|
||||
}
|
||||
.paginate_disabled_previous:hover, .paginate_enabled_previous:hover, .paginate_disabled_next:hover, .paginate_enabled_next:hover {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
.paginate_disabled_previous:active, .paginate_enabled_previous:active, .paginate_disabled_next:active, .paginate_enabled_next:active {
|
||||
outline: medium none;
|
||||
}
|
||||
.paginate_disabled_previous, .paginate_disabled_next {
|
||||
color: #666666 !important;
|
||||
}
|
||||
.paginate_disabled_previous, .paginate_enabled_previous {
|
||||
padding-left: 23px;
|
||||
}
|
||||
.paginate_disabled_next, .paginate_enabled_next {
|
||||
margin-left: 10px;
|
||||
padding-right: 23px;
|
||||
}
|
||||
.paginate_disabled_previous {
|
||||
background: url("/static/images/back_disabled.png") no-repeat scroll left top transparent;
|
||||
}
|
||||
.paginate_enabled_previous {
|
||||
background: url("/static/images/back_enabled.png") no-repeat scroll left top transparent;
|
||||
}
|
||||
.paginate_enabled_previous:hover {
|
||||
background: url("/static/images/back_enabled_hover.png") no-repeat scroll left top transparent;
|
||||
}
|
||||
.paginate_disabled_next {
|
||||
background: url("/static/images/forward_disabled.png") no-repeat scroll right top transparent;
|
||||
}
|
||||
.paginate_enabled_next {
|
||||
background: url("/static/images/forward_enabled.png") no-repeat scroll right top transparent;
|
||||
}
|
||||
.paginate_enabled_next:hover {
|
||||
background: url("/static/images/forward_enabled_hover.png") no-repeat scroll right top transparent;
|
||||
}
|
||||
table.display {
|
||||
clear: both;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
}
|
||||
table.display thead th {
|
||||
border-bottom: 1px solid black;
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
padding: 3px 18px 3px 10px;
|
||||
}
|
||||
table.display tfoot th {
|
||||
border-top: 1px solid black;
|
||||
font-weight: bold;
|
||||
padding: 3px 18px 3px 10px;
|
||||
}
|
||||
table.display tr.heading2 td {
|
||||
border-bottom: 1px solid #AAAAAA;
|
||||
}
|
||||
table.display td {
|
||||
padding: 3px 10px;
|
||||
}
|
||||
table.display td.center {
|
||||
text-align: center;
|
||||
}
|
||||
.sorting_asc {
|
||||
background: url("/static/images/sort_asc.png") no-repeat scroll right center transparent;
|
||||
}
|
||||
.sorting_desc {
|
||||
background: url("/static/images/sort_desc.png") no-repeat scroll right center transparent;
|
||||
}
|
||||
.sorting {
|
||||
background: url("/static/images/sort_both.png") no-repeat scroll right center transparent;
|
||||
}
|
||||
.sorting_asc_disabled {
|
||||
background: url("/static/images/sort_asc_disabled.png") no-repeat scroll right center transparent;
|
||||
}
|
||||
.sorting_desc_disabled {
|
||||
background: url("/static/images/sort_desc_disabled.png") no-repeat scroll right center transparent;
|
||||
}
|
||||
table.display thead th:active, table.display thead td:active {
|
||||
outline: medium none;
|
||||
}
|
||||
table.display tr.odd.gradeA {
|
||||
background-color: #DDFFDD;
|
||||
}
|
||||
table.display tr.even.gradeA {
|
||||
background-color: #EEFFEE;
|
||||
}
|
||||
table.display tr.odd.gradeC {
|
||||
background-color: #DDDDFF;
|
||||
}
|
||||
table.display tr.even.gradeC {
|
||||
background-color: #EEEEFF;
|
||||
}
|
||||
table.display tr.odd.gradeX {
|
||||
background-color: #FFDDDD;
|
||||
}
|
||||
table.display tr.even.gradeX {
|
||||
background-color: #FFEEEE;
|
||||
}
|
||||
table.display tr.odd.gradeU {
|
||||
background-color: #DDDDDD;
|
||||
}
|
||||
table.display tr.even.gradeU {
|
||||
background-color: #EEEEEE;
|
||||
}
|
||||
tr.odd {
|
||||
background-color: #E2E4FF;
|
||||
}
|
||||
tr.even {
|
||||
background-color: white;
|
||||
}
|
||||
.dataTables_scroll {
|
||||
clear: both;
|
||||
}
|
||||
.dataTables_scrollBody {
|
||||
}
|
||||
.top, .bottom {
|
||||
background-color: #F5F5F5;
|
||||
border: 1px solid #CCCCCC;
|
||||
padding: 15px;
|
||||
}
|
||||
.top .dataTables_info {
|
||||
float: none;
|
||||
}
|
||||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
.dataTables_empty {
|
||||
text-align: center;
|
||||
}
|
||||
tfoot input {
|
||||
color: #444444;
|
||||
margin: 0.5em 0;
|
||||
width: 100%;
|
||||
}
|
||||
tfoot input.search_init {
|
||||
color: #999999;
|
||||
}
|
||||
td.group {
|
||||
background-color: #D1CFD0;
|
||||
border-bottom: 2px solid #A19B9E;
|
||||
border-top: 2px solid #A19B9E;
|
||||
}
|
||||
td.details {
|
||||
background-color: #D1CFD0;
|
||||
border: 2px solid #A19B9E;
|
||||
}
|
||||
.example_alt_pagination div.dataTables_info {
|
||||
width: 40%;
|
||||
}
|
||||
.paging_full_numbers {
|
||||
height: 22px;
|
||||
line-height: 22px;
|
||||
width: 400px;
|
||||
}
|
||||
.paging_full_numbers a:active {
|
||||
outline: medium none;
|
||||
}
|
||||
.paging_full_numbers a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
.paging_full_numbers a.paginate_button, .paging_full_numbers a.paginate_active {
|
||||
border: 1px solid #AAAAAA;
|
||||
color: #333333 !important;
|
||||
cursor: pointer;
|
||||
margin: 0 3px;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
.paging_full_numbers a.paginate_button {
|
||||
background-color: #DDDDDD;
|
||||
}
|
||||
.paging_full_numbers a.paginate_button:hover {
|
||||
background-color: #CCCCCC;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
.paging_full_numbers a.paginate_active {
|
||||
background-color: #99B3FF;
|
||||
}
|
||||
table.display tr.even.row_selected td {
|
||||
background-color: #B0BED9;
|
||||
}
|
||||
table.display tr.odd.row_selected td {
|
||||
background-color: #9FAFD1;
|
||||
}
|
||||
tr.odd td.sorting_1 {
|
||||
background-color: #D3D6FF;
|
||||
}
|
||||
tr.odd td.sorting_2 {
|
||||
background-color: #DADCFF;
|
||||
}
|
||||
tr.odd td.sorting_3 {
|
||||
background-color: #E0E2FF;
|
||||
}
|
||||
tr.even td.sorting_1 {
|
||||
background-color: #EAEBFF;
|
||||
}
|
||||
tr.even td.sorting_2 {
|
||||
background-color: #F2F3FF;
|
||||
}
|
||||
tr.even td.sorting_3 {
|
||||
background-color: #F9F9FF;
|
||||
}
|
||||
tr.odd.gradeA td.sorting_1 {
|
||||
background-color: #C4FFC4;
|
||||
}
|
||||
tr.odd.gradeA td.sorting_2 {
|
||||
background-color: #D1FFD1;
|
||||
}
|
||||
tr.odd.gradeA td.sorting_3 {
|
||||
background-color: #D1FFD1;
|
||||
}
|
||||
tr.even.gradeA td.sorting_1 {
|
||||
background-color: #D5FFD5;
|
||||
}
|
||||
tr.even.gradeA td.sorting_2 {
|
||||
background-color: #E2FFE2;
|
||||
}
|
||||
tr.even.gradeA td.sorting_3 {
|
||||
background-color: #E2FFE2;
|
||||
}
|
||||
tr.odd.gradeC td.sorting_1 {
|
||||
background-color: #C4C4FF;
|
||||
}
|
||||
tr.odd.gradeC td.sorting_2 {
|
||||
background-color: #D1D1FF;
|
||||
}
|
||||
tr.odd.gradeC td.sorting_3 {
|
||||
background-color: #D1D1FF;
|
||||
}
|
||||
tr.even.gradeC td.sorting_1 {
|
||||
background-color: #D5D5FF;
|
||||
}
|
||||
tr.even.gradeC td.sorting_2 {
|
||||
background-color: #E2E2FF;
|
||||
}
|
||||
tr.even.gradeC td.sorting_3 {
|
||||
background-color: #E2E2FF;
|
||||
}
|
||||
tr.odd.gradeX td.sorting_1 {
|
||||
background-color: #FFC4C4;
|
||||
}
|
||||
tr.odd.gradeX td.sorting_2 {
|
||||
background-color: #FFD1D1;
|
||||
}
|
||||
tr.odd.gradeX td.sorting_3 {
|
||||
background-color: #FFD1D1;
|
||||
}
|
||||
tr.even.gradeX td.sorting_1 {
|
||||
background-color: #FFD5D5;
|
||||
}
|
||||
tr.even.gradeX td.sorting_2 {
|
||||
background-color: #FFE2E2;
|
||||
}
|
||||
tr.even.gradeX td.sorting_3 {
|
||||
background-color: #FFE2E2;
|
||||
}
|
||||
tr.odd.gradeU td.sorting_1 {
|
||||
background-color: #C4C4C4;
|
||||
}
|
||||
tr.odd.gradeU td.sorting_2 {
|
||||
background-color: #D1D1D1;
|
||||
}
|
||||
tr.odd.gradeU td.sorting_3 {
|
||||
background-color: #D1D1D1;
|
||||
}
|
||||
tr.even.gradeU td.sorting_1 {
|
||||
background-color: #D5D5D5;
|
||||
}
|
||||
tr.even.gradeU td.sorting_2 {
|
||||
background-color: #E2E2E2;
|
||||
}
|
||||
tr.even.gradeU td.sorting_3 {
|
||||
background-color: #E2E2E2;
|
||||
}
|
||||
.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
|
||||
background-color: #ECFFB3;
|
||||
}
|
||||
.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
|
||||
background-color: #E6FF99;
|
||||
}
|
||||
.ex_highlight_row #example tr.even:hover {
|
||||
background-color: #ECFFB3;
|
||||
}
|
||||
.ex_highlight_row #example tr.even:hover td.sorting_1 {
|
||||
background-color: #DDFF75;
|
||||
}
|
||||
.ex_highlight_row #example tr.even:hover td.sorting_2 {
|
||||
background-color: #E7FF9E;
|
||||
}
|
||||
.ex_highlight_row #example tr.even:hover td.sorting_3 {
|
||||
background-color: #E2FF89;
|
||||
}
|
||||
.ex_highlight_row #example tr.odd:hover {
|
||||
background-color: #E6FF99;
|
||||
}
|
||||
.ex_highlight_row #example tr.odd:hover td.sorting_1 {
|
||||
background-color: #D6FF5C;
|
||||
}
|
||||
.ex_highlight_row #example tr.odd:hover td.sorting_2 {
|
||||
background-color: #E0FF84;
|
||||
}
|
||||
.ex_highlight_row #example tr.odd:hover td.sorting_3 {
|
||||
background-color: #DBFF70;
|
||||
}
|
||||
table.KeyTable td {
|
||||
border: 3px solid transparent;
|
||||
}
|
||||
table.KeyTable td.focus {
|
||||
border: 3px solid #3366FF;
|
||||
}
|
||||
table.display tr.gradeA {
|
||||
background-color: #EEFFEE;
|
||||
}
|
||||
table.display tr.gradeC {
|
||||
background-color: #DDDDFF;
|
||||
}
|
||||
table.display tr.gradeX {
|
||||
background-color: #FFDDDD;
|
||||
}
|
||||
table.display tr.gradeU {
|
||||
background-color: #DDDDDD;
|
||||
}
|
||||
div.box {
|
||||
background-color: #E5E5FF;
|
||||
border: 1px solid #8080FF;
|
||||
height: 100px;
|
||||
overflow: auto;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
#popup_container {
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 12px;
|
||||
min-width: 300px; /* Dialog will be no smaller than this */
|
||||
max-width: 600px; /* Dialog will wrap after this width */
|
||||
background: #FFF;
|
||||
border: solid 5px #999;
|
||||
color: #000;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#popup_title {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
line-height: 1.75em;
|
||||
color: #666;
|
||||
background: #CCC url(/static/images/title.gif) top repeat-x;
|
||||
border: solid 1px #FFF;
|
||||
border-bottom: solid 1px #999;
|
||||
cursor: default;
|
||||
padding: 0em;
|
||||
margin: 0em;
|
||||
}
|
||||
|
||||
#popup_content {
|
||||
background: 16px 16px no-repeat url(/static/images/info.gif);
|
||||
padding: 1em 1.75em;
|
||||
margin: 0em;
|
||||
}
|
||||
|
||||
#popup_content.alert {
|
||||
background-image: url(/static/images/info.gif);
|
||||
}
|
||||
|
||||
#popup_content.confirm {
|
||||
background-image: url(/static/images/important.gif);
|
||||
}
|
||||
|
||||
#popup_content.prompt {
|
||||
background-image: url(/static/images/help.gif);
|
||||
}
|
||||
|
||||
#popup_message {
|
||||
padding-left: 48px;
|
||||
}
|
||||
|
||||
#popup_panel {
|
||||
text-align: center;
|
||||
margin: 1em 0em 0em 1em;
|
||||
}
|
||||
|
||||
#popup_prompt {
|
||||
margin: .5em 0em;
|
||||
}
|
||||
@@ -0,0 +1,449 @@
|
||||
|
||||
/*
|
||||
Design by Free CSS Templates
|
||||
http://www.freecsstemplates.org
|
||||
Released for free under a Creative Commons Attribution 2.5 License
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: #FFFFFF url(/static/images/img01.jpg) repeat-x left top;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
color: #787878;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: normal;
|
||||
color: #32639A;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2.4em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.6em;
|
||||
}
|
||||
|
||||
p, ul, ol {
|
||||
margin-top: 0;
|
||||
line-height: 180%;
|
||||
}
|
||||
|
||||
ul, ol {
|
||||
}
|
||||
.error {
|
||||
color: red;
|
||||
font-size: 1.4em;
|
||||
}
|
||||
.info {
|
||||
color: orange;
|
||||
font-size: 1.3em;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.center-img{
|
||||
vertical-align: middle;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #4486C7;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
|
||||
#header {
|
||||
width: 940px;
|
||||
height: 148px;
|
||||
margin: 0 auto;
|
||||
background: url(/static/images/logo-tis.png) no-repeat left 20px;
|
||||
}
|
||||
|
||||
/* Logo */
|
||||
|
||||
#logo {
|
||||
float: left;
|
||||
margin: 0;
|
||||
padding-top: 30px;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#logo h1, #logo p {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#logo h1 {
|
||||
float: left;
|
||||
padding-left: 80px;
|
||||
letter-spacing: -1px;
|
||||
font-size: 3.8em;
|
||||
}
|
||||
|
||||
#logo p {
|
||||
float: left;
|
||||
margin: 0;
|
||||
padding: 26px 0 0 10px;
|
||||
font: normal 14px Georgia, "Times New Roman", Times, serif;
|
||||
font-style: italic;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
#logo a {
|
||||
border: none;
|
||||
background: none;
|
||||
text-decoration: none;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
/* Menu */
|
||||
|
||||
#menu {
|
||||
float: left;
|
||||
width: 100%;
|
||||
height: 49px;
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#menu ul {
|
||||
float: left;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
left:50%;
|
||||
line-height: normal;
|
||||
position: relative;
|
||||
}
|
||||
#menu ul li{
|
||||
float: left;
|
||||
position:relative;
|
||||
right:50%;
|
||||
}
|
||||
#menu li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#menu a {
|
||||
display: block;
|
||||
width: 155px;
|
||||
height: 33px;
|
||||
padding-top: 16px;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
color: #FFFFFF;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#menu a:hover, #menu .current_page_item a {
|
||||
background: #659CEF url(/static/images/img03.jpg) repeat-x left bottom;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#menu .current_page_item a {
|
||||
background: #FBFBFC url(/static/images/img02.jpg) repeat-x left bottom;
|
||||
padding-left: 0;
|
||||
color: #30476A;
|
||||
}
|
||||
|
||||
/* Page */
|
||||
|
||||
#page {
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#page-bgtop {
|
||||
padding: 20px px;
|
||||
}
|
||||
|
||||
#page-bgbtm {
|
||||
}
|
||||
|
||||
/* Content */
|
||||
|
||||
#content {
|
||||
width: 100%;
|
||||
float: left;
|
||||
padding: 30px 0px 0px 0px;
|
||||
}
|
||||
#content h2{
|
||||
margin-left: 30px;
|
||||
}
|
||||
#content h3{
|
||||
margin-left: 60px;
|
||||
}
|
||||
|
||||
h4{
|
||||
padding-left: 150px;
|
||||
}
|
||||
|
||||
.post {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.post-bgtop {
|
||||
}
|
||||
|
||||
.post-bgbtm {
|
||||
}
|
||||
|
||||
.post .title {
|
||||
margin-bottom: 10px;
|
||||
padding: 12px 0 0 0px;
|
||||
letter-spacing: -.5px;
|
||||
color: #32639A;
|
||||
}
|
||||
|
||||
.post .title a {
|
||||
color: #32639A;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.post .meta {
|
||||
height: 30px;
|
||||
background: #D8E7FE;
|
||||
margin: 0px;
|
||||
padding: 0px 0px 0px 0px;
|
||||
text-align: left;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.post .meta .date {
|
||||
float: left;
|
||||
height: 24px;
|
||||
padding: 3px 15px;
|
||||
color: #4A81DE;
|
||||
}
|
||||
|
||||
.post .meta .posted {
|
||||
float: right;
|
||||
height: 24px;
|
||||
padding: 3px 15px;
|
||||
background: #A8CF64;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.post .meta a {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.post .entry {
|
||||
padding: 0px 0px 20px 0px;
|
||||
padding-bottom: 20px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.links {
|
||||
padding-top: 20px;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Sidebar */
|
||||
|
||||
#sidebar {
|
||||
float: right;
|
||||
width: 280px;
|
||||
padding: 0px;
|
||||
color: #787878;
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
#sidebar ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
#sidebar li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border-left: 1px solid #E2E2E2;
|
||||
}
|
||||
|
||||
#sidebar li ul {
|
||||
margin: 0px 0px;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
#sidebar li li {
|
||||
line-height: 35px;
|
||||
border-bottom: 1px dashed #D1D1D1;
|
||||
margin: 0px 30px;
|
||||
border-left: none;
|
||||
}
|
||||
|
||||
#sidebar li li span {
|
||||
display: block;
|
||||
margin-top: -20px;
|
||||
padding: 0;
|
||||
font-size: 11px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
#sidebar h2 {
|
||||
height: 38px;
|
||||
padding-left: 30px;
|
||||
letter-spacing: -.5px;
|
||||
font-size: 1.8em;
|
||||
}
|
||||
|
||||
#sidebar p {
|
||||
margin: 0 0px;
|
||||
padding: 0px 30px 20px 30px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
#sidebar a {
|
||||
border: none;
|
||||
}
|
||||
|
||||
#sidebar a:hover {
|
||||
text-decoration: underline;
|
||||
color: #8A8A8A;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
|
||||
#footer {
|
||||
height: 50px;
|
||||
margin: 0 auto;
|
||||
padding: 0px 0 15px 0;
|
||||
background: #D8E7FE;
|
||||
border-top: 1px solid #D3DEF0;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
#footer p {
|
||||
margin: 0;
|
||||
padding-top: 20px;
|
||||
line-height: normal;
|
||||
font-size: 10px;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
color: #A0A0A0;
|
||||
}
|
||||
|
||||
#footer a {
|
||||
color: #5389E0;
|
||||
}
|
||||
|
||||
td.loading {
|
||||
/*text-align: center;*/
|
||||
vertical-align: center;
|
||||
}
|
||||
|
||||
|
||||
table.sample {
|
||||
border-width: 1px;
|
||||
border-spacing: 1px;
|
||||
border-style: outset;
|
||||
border-color: green;
|
||||
border-collapse: collapse;
|
||||
background-color: white;
|
||||
}
|
||||
table.sample th {
|
||||
border-width: 1px;
|
||||
padding: 1px;
|
||||
border-style: inset;
|
||||
border-color: gray;
|
||||
background-color: white;
|
||||
-moz-border-radius: ;
|
||||
}
|
||||
table.sample td {
|
||||
border-width: 1px;
|
||||
padding: 1px;
|
||||
border-style: inset;
|
||||
border-color: gray;
|
||||
background-color: white;
|
||||
-moz-border-radius: ;
|
||||
}
|
||||
/*Tables*/
|
||||
#table-design {
|
||||
margin: 0 auto;
|
||||
background-color: whiteSmoke;
|
||||
border-radius: 6px;
|
||||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
}
|
||||
#table-design td, #table-design th {
|
||||
}
|
||||
#table-design th {
|
||||
color: #333;
|
||||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
padding: 0 20px;
|
||||
}
|
||||
#table-design td {
|
||||
padding: 0 20px;
|
||||
line-height: 20px;
|
||||
color: #0084B4;
|
||||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
font-size: 14px;
|
||||
border-bottom: 1px solid #fff;
|
||||
border-top: 1px solid #fff;
|
||||
}
|
||||
#table-design tr:hover {
|
||||
background-color: #fff;
|
||||
}
|
||||
P.message {
|
||||
display: inline;
|
||||
margin: 0 auto;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
/*width: 6em;*/
|
||||
background-color: whiteSmoke;
|
||||
border-radius: 6px;
|
||||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
font-size: 14px;
|
||||
color: #0084B4;
|
||||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
#mouter{
|
||||
position:relative;
|
||||
left:50%;
|
||||
float:left;
|
||||
clear:both;
|
||||
margin:10px 0;
|
||||
text-align:left;
|
||||
}
|
||||
#minner{
|
||||
background-color: whiteSmoke;
|
||||
border-radius: 6px;
|
||||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
padding:5px 20px;
|
||||
position:relative;
|
||||
left:-50%;
|
||||
text-align:left;
|
||||
font-size: 14px;
|
||||
color: #0084B4;
|
||||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
Reference in New Issue
Block a user