Improve readability of "Assure someone" page.
pull/1/head
Wytze van der Raay 11 years ago
parent cbe64cbde4
commit b57d4d8b17

@ -720,7 +720,7 @@
{ {
?> ?>
<tr> <tr>
<td class="DataTD"><?=$field1.(empty($field1)?'':':')?>:</td> <td class="DataTD"><?=$field1.(empty($field1)?'':':')?></td>
<td class="DataTD"><?=$field2?></td> <td class="DataTD"><?=$field2?></td>
</tr> </tr>
<? <?
@ -768,7 +768,7 @@
{ {
?> ?>
<tr> <tr>
<td class="DataTD"><?=$field.(empty($field)?'':':')?>:</td> <td class="DataTD"><?=$field.(empty($field)?'':':')?></td>
<td class="DataTD"><input type="text" name="<?=$type?>" value="<?=$value?>"><?=$description?></td> <td class="DataTD"><input type="text" name="<?=$type?>" value="<?=$value?>"><?=$description?></td>
</tr> </tr>
<? <?

@ -32,22 +32,48 @@
else else
$methods = array("Face to Face Meeting"); $methods = array("Face to Face Meeting");
$mnames = array(
'01' => _('January'),
'02' => _('February'),
'03' => _('March'),
'04' => _('April'),
'05' => _('May'),
'06' => _('June'),
'07' => _('July'),
'08' => _('August'),
'09' => _('September'),
'10' => _('October'),
'11' => _('November'),
'12' => _('December')
);
$fname = $row['fname']; $fname = $row['fname'];
$mname = $row['mname']; $mname = $row['mname'];
$lname = $row['lname']; $lname = $row['lname'];
$suffix = $row['suffix']; $suffix = $row['suffix'];
$dob = $row['dob']; $dob = $row['dob'];
$dob_date = explode('-', $dob, 3);
$dob_print = sprintf(
'<tt class="accountdetail">%s-%s-%s</tt> (%d %s %d)',
$dob_date[0], $dob_date[1], $dob_date[2],
intval($dob_date[2], 10), $mnames[$dob_date[1]], intval($dob_date[0], 10)
);
$name = $fname." ".$mname." ".$lname." ".$suffix; $name = $fname." ".$mname." ".$lname." ".$suffix;
$_SESSION['_config']['wothash'] = md5($name."-".$dob); $_SESSION['_config']['wothash'] = md5($name."-".$dob);
require_once($_SESSION['_config']['filepath']."/includes/notary.inc.php"); require_once($_SESSION['_config']['filepath']."/includes/notary.inc.php");
AssureHead(_("Assurance Confirmation"),sprintf(_("Please check the following details match against what you witnessed when you met %s in person. You MUST NOT proceed unless you are sure the details are correct. You may be held responsible by the CAcert Arbitrator for any issues with this Assurance."), $fname)); AssureHead(_("Assurance Confirmation"),sprintf(_("Please check the following details match against what you witnessed when you met %s %s %s %s in person. You MUST NOT proceed unless you are sure the details are correct. You may be held responsible by the CAcert Arbitrator for any issues with this Assurance."), $fname, $mname, $lname, $suffix));
AssureTextLine(_("Name"),$name); AssureTextLine(_("Name"), sprintf(
AssureTextLine(_("Date of Birth"),$dob." ("._("YYYY-MM-DD").")"); "<tt><span class=\"accountdetail name\"><span class=\"accountdetail fname\">%s</span> <span class=\"accountdetail mname\">%s</span> <span class=\"accountdetail lname\">%s</span> <span class=\"accountdetail suffix\">%s</span></span></tt>",
$fname, $mname, $lname, $suffix
));
AssureTextLine(_("Date of Birth"),$dob_print);
AssureMethodLine(_("Method"),$methods,''); AssureMethodLine(_("Method"),$methods,'');
AssureBoxLine("certify",sprintf(_("I certify that %s %s %s has appeared in person."), $fname, $mname, $lname),array_key_exists('certify',$_POST) && $_POST['certify'] == 1); AssureBoxLine("certify",sprintf(_("I certify that %s %s %s %s has appeared in person."), $fname, $mname, $lname, $suffix),array_key_exists('certify',$_POST) && $_POST['certify'] == 1);
AssureBoxLine("CCAAgreed",sprintf(_("I verify that %s %s %s has accepted the CAcert Community Agreement."), $fname, $mname, $lname),array_key_exists('CCAAgreed',$_POST) && $_POST['CCAAgreed'] == 1); AssureBoxLine("CCAAgreed",sprintf(_("I verify that %s %s %s %s has accepted the CAcert Community Agreement."), $fname, $mname, $lname, $suffix),array_key_exists('CCAAgreed',$_POST) && $_POST['CCAAgreed'] == 1);
AssureInboxLine("location",_("Location"),array_key_exists('location',$_SESSION['_config'])?$_SESSION['_config']['location']:"",""); AssureInboxLine("location",_("Location"),array_key_exists('location',$_SESSION['_config'])?$_SESSION['_config']['location']:"","");
AssureInboxLine("date",_("Date"),array_key_exists('date',$_SESSION['_config'])?$_SESSION['_config']['date']:date("Y-m-d"),"<br/>"._("The date when the assurance took place. Please adjust the date if you assured the person on a different day (YYYY-MM-DD).")); AssureInboxLine("date",_("Date"),array_key_exists('date',$_SESSION['_config'])?$_SESSION['_config']['date']:date("Y-m-d"),"<br/>"._("The date when the assurance took place. Please adjust the date if you assured the person on a different day (YYYY-MM-DD)."));
AssureTextLine("",_("Only tick the next box if the Assurance was face to face.")); AssureTextLine("",_("Only tick the next box if the Assurance was face to face."));

@ -6,94 +6,95 @@
/***********************************************/ /***********************************************/
/* HTML tag styles */ /* HTML tag styles */
/***********************************************/ /***********************************************/
body{ body {
font-family: Arial,sans-serif; font-family: Arial,sans-serif;
color: #333333; color: #333333;
line-height: 1.166; line-height: 1.166;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
background: #cccccc; background: #cccccc;
/* url("/siteimages/bg_grad.jpg") fixed; */ /* url("/siteimages/bg_grad.jpg") fixed; */
} }
/******* hyperlink and anchor tag styles *******/ /******* hyperlink and anchor tag styles *******/
a:link, a:visited{ a:link, a:visited {
color: #005FA9; color: #005FA9;
text-decoration: none; text-decoration: none;
} }
a:hover{ a:hover {
text-decoration: underline; text-decoration: underline;
} }
/************** header tag styles **************/ /************** header tag styles **************/
h1{ h1 {
font: bold 120% Arial,sans-serif; font: bold 120% Arial,sans-serif;
color: #334d55; color: #334d55;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
h2{ h2 {
font: bold 114% Arial,sans-serif; font: bold 114% Arial,sans-serif;
color: #006699; color: #006699;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
h3{ h3 {
font: bold 100% Arial,sans-serif; font: bold 100% Arial,sans-serif;
color: #334d55; color: #334d55;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
cursor: pointer; cursor: pointer;
/* cursor: hand; */ /* cursor: hand; */
} }
h4{ h4 {
font: bold 100% Arial,sans-serif; font: bold 100% Arial,sans-serif;
color: #333333; color: #333333;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
h5{ h5 {
font: 100% Arial,sans-serif; font: 100% Arial,sans-serif;
color: #334d55; color: #334d55;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
/*************** list tag styles ***************/ /*************** list tag styles ***************/
ul.menu { ul.menu {
list-style: none; list-style: none;
margin :0px 0px 0px 15px; margin :0px 0px 0px 15px;
padding-left: 5px; padding-left: 5px;
border-left: 1px dotted #000; border-left: 1px dotted #000;
} }
ul.top { ul.top {
list-style: none; list-style: none;
margin: 0px 0px 0px 15px; margin: 0px 0px 0px 15px;
padding-left: 5px; padding-left: 5px;
border-left: 0px; border-left: 0px;
} }
ul { ul {
list-style: none; list-style: none;
margin: 0px 0px 0px 15px; margin: 0px 0px 0px 15px;
padding-left: 5px; padding-left: 5px;
border-left: 1px dotted #000; border-left: 1px dotted #000;
} }
/***********************************************/ /***********************************************/
/* Layout Divs */ /* Layout Divs */
/***********************************************/ /***********************************************/
#pagecell1{ #pagecell1 {
position:absolute; position:absolute;
top: 2%; top: 2%;
left: 2%; left: 2%;

@ -6,20 +6,22 @@
/***********************************************/ /***********************************************/
/* HTML tag styles */ /* HTML tag styles */
/***********************************************/ /***********************************************/
body{
body {
font-family: Arial,sans-serif; font-family: Arial,sans-serif;
color: #333333; color: #333333;
line-height: 1.166; line-height: 1.166;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
background: #cccccc; background: #cccccc;
/* url("/siteimages/bg_grad.jpg") fixed; */ /* url("/siteimages/bg_grad.jpg") fixed; */
} }
/******* hyperlink and anchor tag styles *******/ /******* hyperlink and anchor tag styles *******/
a:link, a:visited { a:link, a:visited {
color: #005FA9; color: #005fa9;
text-decoration: none; text-decoration: none;
} }
@ -27,85 +29,87 @@ a:hover {
text-decoration: underline; text-decoration: underline;
} }
/************** header tag styles **************/ /************** header tag styles **************/
h1{ h1 {
font: bold 120% Arial,sans-serif; font: bold 120% Arial ,sans-serif;
color: #334d55; color: #334d55;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
h2{ h2 {
font: bold 114% Arial,sans-serif; font: bold 114% Arial ,sans-serif;
color: #006699; color: #006699;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
h3{ h3 {
font: bold 100% Arial,sans-serif; font: bold 100% Arial ,sans-serif;
color: #334d55; color: #334d55;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
h3.pointer{ h3.pointer {
cursor: pointer; cursor: pointer;
/* cursor: hand; */ /* cursor: hand; */
} }
h4{ h4 {
font: bold 100% Arial,sans-serif; font: bold 100% Arial ,sans-serif;
color: #333333; color: #333333;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
h5{ h5 {
font: 100% Arial,sans-serif; font: 100% Arial ,sans-serif;
color: #334d55; color: #334d55;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
/*************** list tag styles ***************/ /*************** list tag styles ***************/
ul.menu { ul.menu {
list-style: none; list-style: none;
margin :0px 0px 0px 15px; margin: 0px 0px 0px 15px;
padding-left: 5px; padding-left: 5px;
border-left: 1px dotted #000; border-left: 1px dotted #000;
} }
ul.top { ul.top {
list-style: none; list-style: none;
margin: 0px 0px 0px 15px; margin: 0px 0px 0px 15px;
padding-left: 5px; padding-left: 5px;
border-left: 0px; border-left: 0px;
} }
ul.no_indent { ul.no_indent {
list-style: none; list-style: none;
padding: 0px; padding: 0px;
} }
/***********************************************/ /***********************************************/
/* Layout Divs */ /* Layout Divs */
/***********************************************/ /***********************************************/
#pagecell1{
position:absolute; #pagecell1 {
position: absolute;
top: 2%; top: 2%;
left: 2%; left: 2%;
right: 2%; right: 2%;
width: 96%; width: 96%;
background-color: #ffffff; background-color: #ffffff;
} }
#tl { #tl {
position:absolute; position: absolute;
top: -1px; top: -1px;
left: -1px; left: -1px;
margin: 0px; margin: 0px;
@ -114,7 +118,7 @@ padding: 0px;
} }
#tr { #tr {
position:absolute; position: absolute;
top: -1px; top: -1px;
right: -1px; right: -1px;
margin: 0px; margin: 0px;
@ -122,43 +126,43 @@ padding: 0px;
z-index: 100; z-index: 100;
} }
#masthead{ #masthead {
position: absolute; position: absolute;
top: 0px; top: 0px;
left: 2%; left: 2%;
right: 2%; right: 2%;
width:95.6%; width: 95.6%;
} }
#pageNav{ #pageNav {
float: right; float: right;
width:178px; width: 178px;
padding: 0px; padding: 0px;
background-color: #F5f7f7; background-color: #F5f7f7;
border-left: 1px solid #cccccc; border-left: 1px solid #cccccc;
font: small Verdana,sans-serif; font: small Verdana,sans-serif;
} }
#content{ #content {
padding: 0px 10px 0px 0px; padding: 0px 10px 0px 0px;
margin:0px 178px 0px 0px; margin: 0px 178px 0px 0px;
} }
/***********************************************/ /***********************************************/
/* Component Divs */ /* Component Divs */
/***********************************************/ /***********************************************/
#siteName{ #siteName {
margin: 0px; margin: 0px;
padding: 16px 0px 8px 0px; padding: 16px 0px 8px 0px;
color: #ffffff; color: #ffffff;
font-weight: normal; font-weight: normal;
} }
/************** utility styles *****************/ /************** utility styles *****************/
#utility{ #utility {
font: 75% Verdana,sans-serif; font: 75% Verdana,sans-serif;
position: absolute; position: absolute;
top: 16px; top: 16px;
@ -166,7 +170,7 @@ padding: 0px;
color: #919999; color: #919999;
} }
#utility a{ #utility a {
color: #ffffff; color: #ffffff;
} }
@ -174,46 +178,48 @@ padding: 0px;
text-decoration: underline; text-decoration: underline;
} }
/************** pageName styles ****************/ /************** pageName styles ****************/
#pageName{ #pageName {
padding: 0px 0px 14px 10px; padding: 0px 0px 14px 10px;
margin: 0px; margin: 0px;
border-bottom:1px solid #ccd2d2; border-bottom: 1px solid #ccd2d2;
z-index: 2; z-index: 2;
} }
#pageName h2{ #pageName h2 {
font: bold 175% Arial,sans-serif; font: bold 175% Arial,sans-serif;
color: #000000; color: #000000;
margin:0px; margin: 0px;
padding: 0px; padding: 0px;
} }
/* /*
#pageLogo { #pageLogo {
position: absolute; position: absolute;
top: 8px; top: 8px;
left: 10px; left: 10px;
z-index: 5; z-index: 5;
} }
*/ */
/************* globalNav styles ****************/ /************* globalNav styles ****************/
#globalNav{ #globalNav {
position: relative; position: relative;
width: 100%; width: 100%;
min-width: 640px; min-width: 640px;
height: 32px; height: 32px;
color: #cccccc; color: #cccccc;
padding: 0px; padding: 0px;
margin: 0px; margin: 0px;
background-image: url("siteimages/glbnav_background.gif"); background-image: url("siteimages/glbnav_background.gif");
} }
#globalNav img{ #globalNav img {
margin-bottom: -4px; margin-bottom: -4px;
} }
#gnl { #gnl {
@ -228,7 +234,7 @@ background-image: url("siteimages/glbnav_background.gif");
right:0px; right:0px;
} }
#globalLink{ #globalLink {
position: absolute; position: absolute;
top: 6px; top: 6px;
height: 22px; height: 22px;
@ -241,24 +247,27 @@ background-image: url("siteimages/glbnav_background.gif");
a.glink, a.glink:visited { a.glink, a.glink:visited {
font-size: small; font-size: small;
color: #000000; color: #000000;
font-weight: bold; font-weight: bold;
margin: 0px; margin: 0px;
padding: 2px 5px 4px 5px; padding: 2px 5px 4px 5px;
border-right: 1px solid #8FB8BC; border-right: 1px solid #8fb8bc;
} }
a.glink:hover { a.glink:hover {
background-image: url("siteimages/glblnav_selected.gif"); background-image: url("siteimages/glblnav_selected.gif");
text-decoration: none; text-decoration: none;
} }
.skipLinks {display: none;} .skipLinks {
display: none;
}
/************ subglobalNav styles **************/ /************ subglobalNav styles **************/
.subglobalNav{ .subglobalNav {
position: absolute; position: absolute;
top: 84px; top: 84px;
left: 0px; left: 0px;
@ -279,13 +288,15 @@ a.glink:hover {
color: #cccccc; color: #cccccc;
} }
/*************** search styles *****************/ /*************** search styles *****************/
/* /*
#listshow { #listshow {
z-order: 101; z-order: 101;
} }
*/ */
#search{
#search {
position: absolute; position: absolute;
top: 125px; top: 125px;
right: 0px; right: 0px;
@ -300,46 +311,46 @@ a.glink:hover {
font-size: 11px; font-size: 11px;
} }
#search1{ #search1 {
position: absolute; position: absolute;
top: 85px; top: 85px;
right: 300px; right: 300px;
} }
#search2{ #search2 {
position: absolute; position: absolute;
top: 100px; top: 100px;
right: 300px; right: 300px;
} }
#search3{ #search3 {
position: absolute; position: absolute;
top: 85px; top: 85px;
right: 240px; right: 240px;
} }
#search4{ #search4 {
position: absolute; position: absolute;
top: 100px; top: 100px;
right: 226px; right: 226px;
} }
#googlead{ #googlead {
position: absolute; position: absolute;
top: 5px; top: 5px;
right: 0px; right: 0px;
z-index: -10; z-index: -10;
} }
#search input{ #search input {
font-size: 70%; font-size: 70%;
margin: 0px 0px 0px 10px; margin: 0px 0px 0px 10px;
} }
#search a:link, #search a:visited { #search a:link, #search a:visited {
font-size: 80%; font-size: 80%;
font-weight: bold; font-weight: bold;
} }
#search a:hover { #search a:hover {
@ -349,40 +360,42 @@ a.glink:hover {
/************* breadCrumb styles ***************/ /************* breadCrumb styles ***************/
#breadCrumb{ #breadCrumb {
padding: 5px 0px 5px 10px; padding: 5px 0px 5px 10px;
font: small Verdana,sans-serif; font: small Verdana,sans-serif;
color: #AAAAAA; color: #aaaaaa;
} }
#breadCrumb a{ #breadCrumb a {
color: #AAAAAA; color: #aaaaaa;
} }
#breadCrumb a:hover { #breadCrumb a:hover {
color: #005FA9; color: #005fa9;
text-decoration: underline; text-decoration: underline;
} }
/************** feature styles *****************/ /************** feature styles *****************/
.feature{ .feature {
padding: 0px 0px 10px 10px; padding: 0px 0px 10px 10px;
font-size: 80%; font-size: 80%;
min-height: 200px; min-height: 200px;
height: 200px; height: 200px;
} }
.feature {height: auto;} .feature {
height: auto;
}
.feature h3{ .feature h3 {
font: bold 175% Arial,sans-serif; font: bold 175% Arial,sans-serif;
color: #000000; color: #000000;
padding: 30px 0px 5px 0px; padding: 30px 0px 5px 0px;
} }
.feature img{ .feature img {
float: left; float: left;
padding: 0px 10px 0px 0px; padding: 0px 10px 0px 0px;
} }
@ -396,7 +409,7 @@ a.glink:hover {
min-height: 450px; min-height: 450px;
} }
.story h3{ .story h3 {
font: bold 125% Arial,sans-serif; font: bold 125% Arial,sans-serif;
color: #000000; color: #000000;
} }
@ -405,10 +418,10 @@ a.glink:hover {
padding: 0px 0px 10px 0px; padding: 0px 0px 10px 0px;
} }
.story a.capsule{ .story a.capsule {
font: bold 1em Arial,sans-serif; font: bold 1em Arial,sans-serif;
color: #005FA9; color: #005FA9;
display:block; display: block;
padding-bottom: 5px; padding-bottom: 5px;
} }
@ -416,14 +429,14 @@ a.glink:hover {
text-decoration: underline; text-decoration: underline;
} }
td.storyLeft{ td.storyLeft {
padding-right: 12px; padding-right: 12px;
} }
/************** siteInfo styles ****************/ /************** siteInfo styles ****************/
#siteInfo{ #siteInfo {
clear: both; clear: both;
border-top: 1px solid #cccccc; border-top: 1px solid #cccccc;
font-size: small; font-size: small;
@ -431,15 +444,15 @@ td.storyLeft{
padding: 10px 10px 10px 10px; padding: 10px 10px 10px 10px;
} }
/************ sectionLinks styles **************/ /************ sectionLinks styles **************/
#sectionLinks{ #sectionLinks {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
#sectionLinks h3{ #sectionLinks h3 {
padding: 10px 0px 2px 10px; padding: 10px 0px 2px 10px;
border-bottom: 1px solid #cccccc; border-bottom: 1px solid #cccccc;
} }
@ -448,7 +461,7 @@ td.storyLeft{
display: block; display: block;
border-top: 1px solid #ffffff; border-top: 1px solid #ffffff;
border-bottom: 1px solid #cccccc; border-bottom: 1px solid #cccccc;
background-image: url("siteimages/bg_nav.jpg"); background-image: url("siteimages/bg_nav.jpg");
font-weight: bold; font-weight: bold;
padding: 3px 0px 3px 10px; padding: 3px 0px 3px 10px;
color: #21536A; color: #21536A;
@ -465,83 +478,84 @@ td.storyLeft{
/************* relatedLinks styles **************/ /************* relatedLinks styles **************/
.relatedLinks{ .relatedLinks {
margin: 0px; margin: 0px;
padding: 0px 0px 10px 10px; padding: 0px 0px 10px 10px;
border-bottom: 1px solid #cccccc; border-bottom: 1px solid #cccccc;
} }
.relatedLinks h3{ .relatedLinks h3 {
padding: 10px 0px 2px 0px; padding: 10px 0px 2px 0px;
} }
.relatedLinks a{ .relatedLinks a {
display: block; display: block;
} }
/**************** advert styles *****************/ /**************** advert styles *****************/
#advert{ #advert {
padding: 10px; padding: 10px;
} }
#advert img{ #advert img {
display: block; display: block;
} }
/********************* end **********************/ /********************* end **********************/
.DataTD input, .DataTD textarea { .DataTD input, .DataTD textarea {
FONT-SIZE: 92%; font-size: 92%;
} }
.DataTD select, .DataTD option { .DataTD select, .DataTD option {
FONT-SIZE: 92%; font-size: 92%;
} }
.DataTD { .DataTD {
background-color: #E2E2E2; background-color: #e2e2e2;
border-style: inset; border-style: inset;
border-width: 1px; border-width: 1px;
FONT-SIZE: 8pt; font-size: 8pt;
COLOR: #000000; color: #000000;
FONT-FAMILY: Arial, Tahoma, Verdana, Helvetica, sans-serif; font-family: Arial, Tahoma, Verdana, Helvetica, sans-serif;
background: #ffffff; background: #ffffff;
padding: 1px 5px 1px 5px; padding: 1px 5px 1px 5px;
border: 1px #CFCFCF solid; border: 1px #cfcfcf solid;
border-left: 1px #CFCFCF dotted; border-left: 1px #cfcfcf dotted;
border-right: 1px #CFCFCF dotted; border-right: 1px #cfcfcf dotted;
} }
.DataTDGrey { .DataTDGrey {
background-color: #EFEDED; background-color: #EFEDED;
border-style: inset; border-style: inset;
border-width: 1px; border-width: 1px;
FONT-SIZE: 8pt; font-size: 8pt;
COLOR: #000000; color: #000000;
FONT-FAMILY: Arial, Tahoma, Verdana, Helvetica, sans-serif; font-family: Arial, Tahoma, Verdana, Helvetica, sans-serif;
padding: 1px 5px 1px 5px; padding: 1px 5px 1px 5px;
border: 1px #CFCFCF solid; border: 1px #CFCFCF solid;
border-left: 1px #CFCFCF dotted; border-left: 1px #cfcfcf dotted;
border-right: 1px #CFCFCF dotted; border-right: 1px #cfcfcf dotted;
} }
.DataTDNotDotted { .DataTDNotDotted {
background-color: #E2E2E2; background-color: #e2e2e2;
border-style: inset; border-style: inset;
border-width: 1px; border-width: 1px;
FONT-SIZE: 8pt; font-size: 8pt;
COLOR: #000000; color: #000000;
FONT-FAMILY: Arial, Tahoma, Verdana, Helvetica, sans-serif; font-family: Arial, Tahoma, Verdana, Helvetica, sans-serif;
background: #ffffff; background: #ffffff;
padding: 1px 5px 1px 5px; padding: 1px 5px 1px 5px;
border: 1px #CFCFCF solid; border: 1px #CFCFCF solid;
border-left: 1px #CFCFCF solid; border-left: 1px #cfcfcf solid;
border-right: 1px #CFCFCF solid; border-right: 1px #cfcfcf solid;
} }
.wrapper { .wrapper {
@ -552,104 +566,142 @@ td.storyLeft{
} }
td.greytxt { td.greytxt {
color: #CCCCCC; color: #cccccc;
font-size: smaller; font-size: smaller;
text-align: right; text-align: right;
vertical-align: bottom; vertical-align: bottom;
} }
.title { .title {
background: #E2E2E2; background: #e2e2e2;
font-weight:BOLD; font-weight: bold;
padding: 1px 5px 1px 5px; padding: 1px 5px 1px 5px;
border: 1px solid #CFCFCF; border: 1px solid #cfcfcf;
border-bottom: 3px double #CFCFCF; border-bottom: 3px double #cfcfcf;
border-top: 1px solid #656565; border-top: 1px solid #656565;
text-align: center; text-align: center;
} }
.errmsg { .errmsg {
font-weight: BOLD; font-weight: bold;
color: #FF0000; color: #FF0000;
} }
.ac_menu .ac_menu {
{ border: 1px solid black
border:1px solid black
} }
.ac_normal
{ .ac_normal {
background-color:#ffffff; background-color: #ffffff;
cursor:pointer; cursor: pointer;
} }
.ac_highlight
{ .ac_highlight {
background-color:#3366cc; background-color: #3366cc;
color:white; color: white;
cursor:pointer; cursor: pointer;
} }
.ac_normal .a
{ .ac_normal .a {
font-size:13px; font-size: 13px;
color:black; color: black;
} }
.ac_highlight .a
{ .ac_highlight .a {
font-size:13px; font-size: 13px;
} }
.ac_normal .d
{ .ac_normal .d {
float:right; float: right;
font-size:10px; font-size: 10px;
color:green; color: green;
} }
.ac_highlight .d
{ .ac_highlight .d {
float:right; float: right;
font-size:10px; font-size: 10px;
} }
/************** sponsorInfo styles ****************/ /************** sponsorInfo styles ****************/
div.sponsorinfo { div.sponsorinfo {
clear: both; clear: both;
border-top: 1px solid #cccccc; border-top: 1px solid #cccccc;
font-size: small; font-size: small;
color: #000000; color: #000000;
padding: 10px 10px 10px 10px; padding: 10px 10px 10px 10px;
} }
img.sponsorlogo { img.sponsorlogo {
margin-left: 10px; margin-left: 10px;
margin-right: 10px; margin-right: 10px;
border: 0px none; border: 0px none;
vertical-align: middle; vertical-align: middle;
} }
/************ Newsbox *************/ /************ Newsbox *************/
#lnews { /* class for the text "Latest News" */ #lnews { /* class for the text "Latest News" */
font-size: small; font-size: small;
font-variant: small-caps; font-variant: small-caps;
} }
div.newsbox { div.newsbox {
border-top: 1px solid #cccccc; border-top: 1px solid #cccccc;
color: #101010; color: #101010;
padding: 10px 10px 10px 10px; padding: 10px 10px 10px 10px;
} }
/************ SQL Performance ***********/ /************ SQL Performance ***********/
div.footerbar { div.footerbar {
clear: both; clear: both;
border-top: 1px solid #cccccc; border-top: 1px solid #cccccc;
font-size: small; font-size: small;
color: black; color: black;
padding: 10px 10px 10px 10px; padding: 10px 10px 10px 10px;
} }
/************ Honeypot ***********/ /************ Honeypot ***********/
.robotic { display: none; } .robotic {
display: none;
}
/************ unicode fallbacks ***********/
/* Some embedding of font */
@font-face {
font-family: 'Source Code Pro';
src: local('Source Code Pro');
/* src: url(/res/fonts/SourceCodePro-Medium.ttf); */
}
@font-face {
font-family: 'Last Resort';
src: local('LastResort');
/* src: url(/res/fonts/LastResort.ttf); */
}
.accountdetail {
font-family: 'Source Code Pro', 'Lucida Console', 'Arial Unicode MS', monospace, 'Last Resort';
font-size: 1.1em;
}
.accountdetail.fname {
}
.accountdetail.mname {
}
.accountdetail.lname {
font-weight: bold;
}
.accountdetail.suffix {
}

Loading…
Cancel
Save