mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
CSS cleanup
I've cleaned up the CSS a bit and it validates now. No changes to the current layout/visual presentation itself have been made, just fixed the whole indention and replaced some redundant things. Signed-off-by: Michael Klier <chi@chimeric.de> Signed-off-by: Simo Leone <simo@archlinux.org>
This commit is contained in:
parent
94a8053210
commit
ffccbd540f
3 changed files with 506 additions and 575 deletions
|
@ -2,107 +2,108 @@
|
||||||
* ul { padding: 20px; }
|
* ul { padding: 20px; }
|
||||||
body {
|
body {
|
||||||
min-width: 600px;
|
min-width: 600px;
|
||||||
background: url("/images/titlebar.png") repeat-x top left #fbf8f1;
|
background: #fbf8f1 url("/images/titlebar.png") repeat-x top left;
|
||||||
padding: 0 30px;
|
padding: 0 30px;
|
||||||
color: #555;
|
color: #555;
|
||||||
font-family: "DejaVu Sans", "Bitstream Vera Sans", "Lucida Grande", Arial, sans-serif;
|
font-family: "DejaVu Sans", "Bitstream Vera Sans", "Lucida Grande", Arial, sans-serif;
|
||||||
}
|
}
|
||||||
/*
|
/* Divs */
|
||||||
* Divs
|
|
||||||
*/
|
|
||||||
#head_container {
|
#head_container {
|
||||||
height: 220px;
|
height: 220px;
|
||||||
}
|
}
|
||||||
#main_nav {
|
#main_nav {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 123px;
|
top: 123px;
|
||||||
right: 30px;
|
right: 30px;
|
||||||
width: 600px;
|
width: 600px;
|
||||||
background: #333;
|
background-color: #333;
|
||||||
}
|
}
|
||||||
#sub_nav {
|
#sub_nav {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 149px;
|
top: 149px;
|
||||||
right: 30px;
|
right: 30px;
|
||||||
min-width: 700px;
|
min-width: 700px;
|
||||||
background: #1793d1;
|
background-color: #1793d1;
|
||||||
}
|
}
|
||||||
#main_nav ul, #sub_nav ul {
|
#main_nav ul,
|
||||||
list-style: none;
|
#sub_nav ul {
|
||||||
margin: 0;
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
#main_nav ul li, #sub_nav ul li {
|
#main_nav ul li,
|
||||||
display: block;
|
#sub_nav ul li {
|
||||||
float: right;
|
display: block;
|
||||||
|
float: right;
|
||||||
margin: 0 3px;
|
margin: 0 3px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: 26px;
|
line-height: 26px;
|
||||||
}
|
}
|
||||||
#main_nav ul li.selected {
|
#main_nav ul li.selected {
|
||||||
background: #1793d1;
|
background-color: #1793d1;
|
||||||
}
|
}
|
||||||
#sub_nav ul li.selected {
|
#sub_nav ul li.selected {
|
||||||
background: #333;
|
background-color: #333;
|
||||||
}
|
}
|
||||||
#main_nav ul li a, #sub_nav ul li a {
|
#main_nav ul li a,
|
||||||
|
#sub_nav ul li a {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 0 8px;
|
padding: 0 8px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
#main_nav ul li a:hover {
|
#main_nav ul li a:hover {
|
||||||
background: #1793d1;
|
background-color: #1793d1;
|
||||||
}
|
}
|
||||||
#lang_login_sub {
|
#lang_login_sub {
|
||||||
display: block;
|
display: block;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -30px;
|
top: -30px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
width: 90%;
|
width: 90%;
|
||||||
}
|
}
|
||||||
#lang_login_sub .button {
|
#lang_login_sub .button {
|
||||||
font-size: 9px;
|
font-size: 9px;
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
}
|
}
|
||||||
#login_bar {
|
#login_bar {
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
display: block;
|
display: block;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
#login_bar input {
|
#login_bar input {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
#lang_bar {
|
#lang_bar {
|
||||||
display: block;
|
display: block;
|
||||||
position: relative;
|
position: relative;
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
#lang_login_sub ul {
|
#lang_login_sub ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
#lang_login_sub ul a {
|
#lang_login_sub ul a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
#lang_login_sub ul a:hover {
|
#lang_login_sub ul a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
#lang_login_sub ul li {
|
#lang_login_sub ul li {
|
||||||
display: inline;
|
display: inline;
|
||||||
padding-right: 1px;
|
padding-right: 1px;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
#updates {
|
#updates {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
/*position: relative;*/
|
/*position: relative;*/
|
||||||
top: 0px;
|
top: 0;
|
||||||
background: #E7F0F6;
|
background-color: #e7f0f6;
|
||||||
border: 1px solid #92CBE8;
|
border: 1px solid #92cbe8;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
#ads {
|
#ads {
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
|
@ -112,10 +113,10 @@ body {
|
||||||
}
|
}
|
||||||
#logo {
|
#logo {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 10px;
|
top: 10px;
|
||||||
left: 25px;
|
left: 25px;
|
||||||
width: 350px;
|
width: 350px;
|
||||||
}
|
}
|
||||||
#logo h1#archtitle {
|
#logo h1#archtitle {
|
||||||
text-indent: -9999px;
|
text-indent: -9999px;
|
||||||
|
@ -129,344 +130,327 @@ body {
|
||||||
height: 103px;
|
height: 103px;
|
||||||
}
|
}
|
||||||
#devlist {
|
#devlist {
|
||||||
width: 80%;
|
width: 80%;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
border-top: 1px dashed black;
|
border-top: 1px dashed #000;
|
||||||
border-bottom: 1px dashed black;
|
border-bottom: 1px dashed #000;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.clear {
|
.clear {
|
||||||
clear: both;
|
clear: both;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.right {
|
.right {
|
||||||
float: right;
|
float: right;
|
||||||
width: 320px;
|
width: 320px;
|
||||||
padding: 0 10px 10px 0;
|
padding: 0 10px 10px 0;
|
||||||
}
|
}
|
||||||
.left {
|
.left {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 0 360px 0 0;
|
margin-right: 360px;
|
||||||
}
|
}
|
||||||
.left p {
|
.left p {
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
.box {
|
.box {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
.greybox {
|
.greybox {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
background: #f6f3dd;
|
background-color: #f6f3dd;
|
||||||
border: 1px solid #d9d6c2;
|
border: 1px solid #d9d6c2;
|
||||||
}
|
}
|
||||||
div.listing {
|
div.listing {
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
.error {
|
.error {
|
||||||
color: #dd0000;
|
color: #dd0000;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
}
|
||||||
.foot {
|
.foot {
|
||||||
clear: both;
|
clear: both;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 0.75em;
|
font-size: 0.75em;
|
||||||
}
|
}
|
||||||
#search {
|
#search {
|
||||||
float: right;
|
float: right;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -2em;
|
top: -2em;
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
}
|
}
|
||||||
#search input {
|
#search input {
|
||||||
background: #f6f3dd;
|
background-color: #f6f3dd;
|
||||||
border: 1px solid #d9d6c2;
|
border: 1px solid #d9d6c2;
|
||||||
}
|
}
|
||||||
.smalltext {
|
.smalltext {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
font-size: x-small;
|
font-size: x-small;
|
||||||
}
|
}
|
||||||
/*
|
/* Headers */
|
||||||
* Headers
|
|
||||||
*/
|
|
||||||
h2 {
|
h2 {
|
||||||
margin: 20px 0 10px 0;
|
margin: 20px 0 10px 0;
|
||||||
}
|
}
|
||||||
h2.title {
|
h2.title {
|
||||||
border-bottom: 1px solid #46494d;
|
border-bottom: 1px solid #46494d;
|
||||||
}
|
}
|
||||||
h3 {
|
h3 {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
h3.title {
|
h3.title {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
border-bottom: 1px solid #46494d;
|
border-bottom: 1px solid #46494d;
|
||||||
}
|
}
|
||||||
h4.title {
|
h4.title {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border-bottom: 1px solid #46494d;
|
border-bottom: 1px solid #46494d;
|
||||||
}
|
}
|
||||||
h4.news {
|
h4.news {
|
||||||
border-bottom: 1px dotted #0771a6;
|
border-bottom: 1px dotted #0771a6;
|
||||||
margin-bottom: .25em;
|
margin-bottom: .25em;
|
||||||
padding-bottom: .2em;
|
padding-bottom: .2em;
|
||||||
}
|
}
|
||||||
div.listing h4 {
|
div.listing h4 {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #0771a6;
|
background-color: #0771a6;
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
/*
|
/* Paragraphs, Anchors, Images */
|
||||||
* Paragraphs, Anchors, Images
|
|
||||||
*/
|
|
||||||
p {
|
p {
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
}
|
}
|
||||||
p.news {
|
p.news {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
color: #0771a6;
|
color: #0771a6;
|
||||||
}
|
}
|
||||||
a:hover {
|
a:hover {
|
||||||
color: #333;
|
color: #333;
|
||||||
}
|
}
|
||||||
#about {
|
#about {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -9px;
|
top: -9px;
|
||||||
}
|
}
|
||||||
ol {
|
ol {
|
||||||
padding-left: 45px;
|
padding-left: 45px;
|
||||||
}
|
}
|
||||||
ul.small {
|
ul.small {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
font-size: x-small;
|
font-size: x-small;
|
||||||
}
|
}
|
||||||
ul.links {
|
ul.links {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
padding: 0px 0px 20px 20px;
|
padding: 0 0 20px 20px;
|
||||||
}
|
}
|
||||||
img {
|
img {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
hr {
|
hr {
|
||||||
border: none;
|
border: none;
|
||||||
border-top: 1px solid #46494d;
|
border-top: 1px solid #46494d;
|
||||||
}
|
}
|
||||||
.greybox input, button, textarea, select {
|
.greybox input,
|
||||||
background: #e1e3e6;
|
button,
|
||||||
border: 1px solid #8faecd;
|
textarea,
|
||||||
|
select {
|
||||||
|
background-color: #e1e3e6;
|
||||||
|
border: 1px solid #8faecd;
|
||||||
}
|
}
|
||||||
.box input, button {
|
.box input, button {
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
background: #c1c3f6;
|
background-color: #c1c3f6;
|
||||||
font-size: x-small;
|
font-size: x-small;
|
||||||
border: 1px solid #8faecd;
|
border: 1px solid #8faecd;
|
||||||
}
|
}
|
||||||
button#f_trigger {
|
button#f_trigger {
|
||||||
background: #e1e3e6;
|
background-color: #e1e3e6;
|
||||||
}
|
}
|
||||||
/*
|
/* Table stuff */
|
||||||
* Table stuff
|
|
||||||
*/
|
|
||||||
table.center {
|
table.center {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
table#releases {
|
table#releases {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
table#releases td {
|
table#releases td {
|
||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
}
|
}
|
||||||
table#repolinks {
|
table#repolinks {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
table#repolinks td {
|
table#repolinks td {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
table#repolinks th {
|
table#repolinks th {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
table#art {
|
table#art {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
.devpic {
|
.devpic {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
padding-right: 15px;
|
padding-right: 15px;
|
||||||
}
|
}
|
||||||
table.deventry {
|
table.deventry {
|
||||||
padding-bottom: 25px;
|
padding-bottom: 25px;
|
||||||
}
|
}
|
||||||
.deventry th {
|
.deventry th {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
.deventry td {
|
.deventry td {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
table.results {
|
table.results {
|
||||||
padding: 0px;
|
padding: 0;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
.results th {
|
.results th {
|
||||||
background: #e1e3e6;
|
background-color: #e1e3e6;
|
||||||
border-bottom: 1px solid #46494d;
|
border-bottom: 1px solid #46494d;
|
||||||
border-top: 1px solid #46494d;
|
border-top: 1px solid #46494d;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding-top: 0px;
|
padding: 0 5px 0 0;
|
||||||
padding-bottom: 0px;
|
|
||||||
padding-right: 5px;
|
|
||||||
}
|
}
|
||||||
.results th>a {
|
.results th>a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #46494d;
|
color: #46494d;
|
||||||
}
|
}
|
||||||
.results td {
|
.results td {
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
}
|
}
|
||||||
.listing th {
|
.listing th {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
}
|
}
|
||||||
.listing td {
|
.listing td {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
}
|
}
|
||||||
blockquote.code {
|
blockquote.code {
|
||||||
background: #f3f3f3;
|
background-color: #f3f3f3;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
font-family: "DejaVu Sans Mono", "Bitstream Vera Sans Mono", Courier, "Courier New", Monospace;
|
font-family: "DejaVu Sans Mono", "Bitstream Vera Sans Mono", Courier, "Courier New", Monospace;
|
||||||
color: #333;
|
color: #333;
|
||||||
font-size: .95em;
|
font-size: .95em;
|
||||||
}
|
}
|
||||||
/*
|
/* Wiki Styles */
|
||||||
* Wiki Styles
|
|
||||||
*/
|
|
||||||
h1.wiki {
|
h1.wiki {
|
||||||
border-bottom: 1px solid #46494d;
|
border-bottom: 1px solid #46494d;
|
||||||
}
|
}
|
||||||
div.wikifoot_l {
|
div.wikifoot_l {
|
||||||
font-size: x-small;
|
font-size: x-small;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding-top: 25px;
|
padding-top: 25px;
|
||||||
}
|
}
|
||||||
div.wikifoot_r {
|
div.wikifoot_r {
|
||||||
font-size: x-small;
|
font-size: x-small;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
float: right;
|
float: right;
|
||||||
padding-top: 25px;
|
padding-top: 25px;
|
||||||
}
|
}
|
||||||
.wikibody {
|
.wikibody {
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
}
|
}
|
||||||
.wikibody ol {
|
.wikibody ol {
|
||||||
padding-left: 28px;
|
padding-left: 28px;
|
||||||
padding-top: 0px;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
.wikibody ul {
|
.wikibody ul {
|
||||||
padding-left: 25px;
|
padding-left: 25px;
|
||||||
padding-top: 0px;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
.wikibody dd {
|
.wikibody dd {
|
||||||
padding-left: 30px;
|
padding-left: 30px;
|
||||||
}
|
}
|
||||||
.wikibody pre code {
|
.wikibody pre code {
|
||||||
background: #c1c3f6;
|
background-color: #c1c3f6;
|
||||||
border: 1px solid #8faecd;
|
border: 1px solid #8faecd;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
font-family: Courier, Courier New, Monospace;
|
font-family: Courier, Courier New, Monospace;
|
||||||
}
|
}
|
||||||
.wikibody blockquote {
|
.wikibody blockquote {
|
||||||
padding-left: 30px;
|
padding-left: 30px;
|
||||||
}
|
}
|
||||||
.wikibody td {
|
.wikibody td {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border: 1px solid black;
|
border: 1px solid #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Used by Django's FormWrappers */
|
/* Used by Django's FormWrappers */
|
||||||
textarea.vLargeTextField {
|
textarea.vLargeTextField {
|
||||||
width: 450px;
|
width: 450px;
|
||||||
height: 250px;
|
height: 250px;
|
||||||
}
|
}
|
||||||
.pkgr2 {
|
.pkgr2 {
|
||||||
background-color: #eee4cb;
|
background-color: #eee4cb;
|
||||||
}
|
}
|
||||||
#maincontent {
|
#maincontent {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
#maincontent > table {
|
#maincontent > table {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
margin-left: 5%;
|
margin-left: 5%;
|
||||||
margin-right: 5%;
|
margin-right: 5%;
|
||||||
}
|
}
|
||||||
.pgbox {
|
.pgbox {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
margin-left: 5%;
|
margin-left: 5%;
|
||||||
margin-right: 5%;
|
margin-right: 5%;
|
||||||
background-color: #ffffff;
|
background-color: #fff;
|
||||||
border-width: 2px;
|
border: 2px solid #ddd;
|
||||||
border-color: #dddddd;
|
text-align: left;
|
||||||
border-style: solid;
|
padding: 3px;
|
||||||
text-align: left;
|
|
||||||
padding: 3px;
|
|
||||||
}
|
}
|
||||||
.frontpgboxbody {
|
.frontpgboxbody {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
.frontpgboxbody > table {
|
.frontpgboxbody > table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.boxSoftTitle {
|
.boxSoftTitle {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pgboxtitle {
|
.pgboxtitle {
|
||||||
border-width: 2px;
|
border: 2px solid #ddd;
|
||||||
border-style: solid;
|
border-top: 1px solid #fff;
|
||||||
border-color: #dddddd;
|
border-left: 1px solid #fff;
|
||||||
border-top-width: 1px;
|
background-color: #f1f2f4;
|
||||||
border-top-color: #ffffff;
|
text-align: left;
|
||||||
border-left-width: 1px;
|
padding: 2px 10px 2px 10px;
|
||||||
border-left-color: #ffffff;
|
|
||||||
background-color: #f1f2f4;
|
|
||||||
text-align: left;
|
|
||||||
padding-top: 2px;
|
|
||||||
padding-bottom: 2px;
|
|
||||||
padding-right: 10px;
|
|
||||||
padding-left: 10px;
|
|
||||||
}
|
}
|
||||||
.pgboxbody, .pgboxbody-comment {
|
.pgboxbody,
|
||||||
padding: 10px;
|
.pgboxbody-comment {
|
||||||
|
padding: 10px;
|
||||||
}
|
}
|
||||||
.pgboxbody input {
|
.pgboxbody input {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pgboxbody-comment > table {
|
.pgboxbody-comment > table {
|
||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
border-spacing: 0 15px;
|
border-spacing: 0 15px;
|
||||||
}
|
}
|
||||||
|
/* vim:ts=2:sw=2:et:enc=utf-8:
|
||||||
|
* */
|
||||||
|
|
|
@ -1,221 +1,185 @@
|
||||||
body,table,td,img
|
body,table,td,img {
|
||||||
{
|
border: none;
|
||||||
border: 0px;
|
margin: 0;
|
||||||
margin: 0px;
|
padding: 0;
|
||||||
padding: 0px;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/* Main Wrapper Data Format */
|
/* Main Wrapper Data Format */
|
||||||
td.preHeader
|
td.preHeader {
|
||||||
{
|
background-color: #000;
|
||||||
background-color: #000;
|
border-bottom: 1px solid #455471;
|
||||||
border-bottom: 1px solid rgb( 69, 84, 113 );
|
height: 16px;
|
||||||
height: 16px;
|
text-align: right;
|
||||||
text-align: right;
|
}
|
||||||
}
|
td.headerFill {
|
||||||
td.headerFill
|
background-color: #6c83b0;
|
||||||
{
|
border-bottom: 1px solid #000;
|
||||||
background-color: rgb( 108, 131, 176 );
|
}
|
||||||
border-bottom: 1px solid #000;
|
td.headerDisplay {
|
||||||
}
|
background-color: #6c83b0;
|
||||||
td.headerDisplay
|
padding-left: 16px;
|
||||||
{
|
}
|
||||||
background-color: rgb( 108, 131, 176 );
|
td.mainLinks {
|
||||||
padding-left: 16px;
|
background-color: #eee;
|
||||||
}
|
border-bottom: 1px solid #000;
|
||||||
td.mainLinks
|
height: 22px;
|
||||||
{
|
padding-left: 12px;
|
||||||
background-color: #eee;
|
}
|
||||||
border-bottom: 1px solid #000;
|
td.sideBar {
|
||||||
height: 22px;
|
background-color: #fff;
|
||||||
padding-left: 12px;
|
text-align: center;
|
||||||
}
|
vertical-align: top;
|
||||||
td.sideBar
|
width: 150px;
|
||||||
{
|
}
|
||||||
background-color: #fff;
|
td.sideBarGrey {
|
||||||
text-align: center;
|
background-color: #eee;
|
||||||
vertical-align: top;
|
border-bottom: 1px solid #000;
|
||||||
width: 150px;
|
text-align: left;
|
||||||
}
|
vertical-align: top;
|
||||||
td.sideBarGrey
|
width: 150px;
|
||||||
{
|
}
|
||||||
background-color: #eee;
|
td.sideBarSmall {
|
||||||
border-bottom: 1px solid #000;
|
background-color: #6c83b0;
|
||||||
text-align: left;
|
border-bottom: 1px solid #000;
|
||||||
vertical-align: top;
|
height: 16px;
|
||||||
width: 150px;
|
text-align: right;
|
||||||
}
|
width: 150px;
|
||||||
td.sideBarSmall
|
}
|
||||||
{
|
td.sideBarSmallHeader {
|
||||||
background-color: rgb( 108, 131, 176 );
|
background-color: #6c83b0;
|
||||||
border-bottom: 1px solid #000;
|
vertical-align: top;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
text-align: right;
|
padding-top: 1px;
|
||||||
width: 150px;
|
padding-bottom: 2px;
|
||||||
}
|
text-align: right;
|
||||||
td.sideBarSmallHeader
|
width: 150px;
|
||||||
{
|
}
|
||||||
background-color: rgb(108,131,176);
|
td.subLinks {
|
||||||
vertical-align: top;
|
background-color: #ffe4e8;
|
||||||
height: 16px;
|
border-right: 1px solid #000;
|
||||||
padding-top: 1px;
|
color: #787878;
|
||||||
padding-bottom: 2px;
|
padding-left: 12px;
|
||||||
text-align: right;
|
height: 19px;
|
||||||
width: 150px;
|
}
|
||||||
}
|
td.contentDisplay {
|
||||||
td.subLinks
|
background-color: #fff;
|
||||||
{
|
border: 1px solid #000;
|
||||||
background-color: rgb( 225, 228, 232 );
|
border-top: none;
|
||||||
border-right: 1px solid #000;
|
text-align: center;
|
||||||
color: rgb( 120, 120, 120 );
|
vertical-align: top;
|
||||||
padding-left: 12px;
|
padding: 10px;
|
||||||
height: 19px;
|
}
|
||||||
}
|
td.footerDisplay {
|
||||||
td.contentDisplay
|
background-color: #eee;
|
||||||
{
|
border-bottom: 1px solid #000;
|
||||||
background-color: #ffffff;
|
text-align: center;
|
||||||
border-right: 1px solid #000;
|
}
|
||||||
border-left: 1px solid #000;
|
|
||||||
border-bottom: 1px solid #000;
|
|
||||||
text-align: center;
|
|
||||||
vertical-align: top;
|
|
||||||
padding: 10;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.footerDisplay
|
|
||||||
{
|
|
||||||
background-color: #eee;
|
|
||||||
border-bottom: 1px solid #000;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Containers Used Globally */
|
/* Containers Used Globally */
|
||||||
table.boxSoft
|
table.boxSoft {
|
||||||
{
|
width: 90%;
|
||||||
width: 90%;
|
background-color: #ddd;
|
||||||
background-color: #ddd;
|
text-align: left;
|
||||||
text-align: left;
|
}
|
||||||
}
|
td.boxSoft {
|
||||||
td.boxSoft
|
background-color: #fff;
|
||||||
{
|
padding: 2px;
|
||||||
background-color: #fff;
|
text-align: left;
|
||||||
padding: 10;
|
}
|
||||||
text-align: left;
|
td.boxSoftColumn {
|
||||||
}
|
padding-left: 16px;
|
||||||
td.boxSoftColumn
|
padding-right: 16px;
|
||||||
{
|
text-align: justify;
|
||||||
padding-left: 16;
|
vertical-align: top;
|
||||||
padding-right: 16;
|
text-indent: 20px;
|
||||||
text-align: justify;
|
}
|
||||||
vertical-align: top;
|
td.div {
|
||||||
text-indent: 20px;
|
background-color: #eee;
|
||||||
}
|
width: 3px;
|
||||||
td.div
|
}
|
||||||
{
|
td.boxSoftTitle {
|
||||||
background-color: #eee;
|
border-bottom: 1px solid #fff;
|
||||||
width: 3px;
|
border-top: 1px solid #fff;
|
||||||
}
|
background-color: #f1f2f4;
|
||||||
td.boxSoftTitle
|
padding: 1px 0 0 3px;
|
||||||
{
|
text-align: left;
|
||||||
border-bottom: 1px solid #fff;
|
}
|
||||||
border-top: 1px solid #fff;
|
table.boxSoftSmall {
|
||||||
background-color: rgb( 241, 242, 244 );
|
width: 94px;
|
||||||
padding-left: 10;
|
background-color: #ddd;
|
||||||
padding-top: 1;
|
}
|
||||||
padding-bottom: 1;
|
td.boxSoftSmall {
|
||||||
text-align: left;
|
background-color: #fff;
|
||||||
}
|
text-align: center;
|
||||||
table.boxSoftSmall
|
padding-top: 2px;
|
||||||
{
|
padding-bottom: 2px;
|
||||||
width: 94%;
|
}
|
||||||
background-color: #ddd;
|
td.boxSoftSmallTitle {
|
||||||
}
|
border-bottom: 1px solid #ccc;
|
||||||
td.boxSoftSmall
|
background-color: #f1f2f4;
|
||||||
{
|
padding-left: 10px;
|
||||||
background-color: #fff;
|
}
|
||||||
text-align: center;
|
/* ss = small space */
|
||||||
padding-top: 2;
|
td.ss {
|
||||||
padding-bottom: 2;
|
padding-left: 6px;
|
||||||
}
|
vertical-align: top;
|
||||||
td.boxSoftSmallTitle
|
}
|
||||||
{
|
td.display {
|
||||||
border-bottom: 1px solid #ccc;
|
border-bottom: 1px solid #000;
|
||||||
background-color: rgb( 241, 242, 244 );
|
padding-bottom: 6px;
|
||||||
padding-left: 10;
|
}
|
||||||
}
|
td.features {
|
||||||
td.ss /* ss = small space */
|
padding: 4px;
|
||||||
{
|
text-align: justify;
|
||||||
padding-left: 6px;
|
vertical-align:top;
|
||||||
vertical-align: top;
|
}
|
||||||
}
|
td.formLeft {
|
||||||
td.display
|
padding: 6px;
|
||||||
{
|
text-align: left;
|
||||||
border-bottom: 1px solid #000;
|
vertical-align: top;
|
||||||
padding-bottom: 6px;
|
}
|
||||||
}
|
td.data1 {
|
||||||
td.features
|
background-color: #eee;
|
||||||
{
|
vertical-align: top;
|
||||||
padding: 4px;
|
padding-left: .3em;
|
||||||
text-align: justify;
|
text-align: left;
|
||||||
vertical-align:top;
|
}
|
||||||
}
|
td.data2 {
|
||||||
td.formLeft
|
background-color: #ddd;
|
||||||
{
|
vertical-align: top;
|
||||||
padding: 6px;
|
padding-left: .3em;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
vertical-align: top;
|
}
|
||||||
}
|
.outofdate {
|
||||||
td.data1
|
background-color: #faa;
|
||||||
{
|
padding-left: .3em;
|
||||||
background-color: #eee;
|
text-align: left;
|
||||||
vertical-align: top;
|
}
|
||||||
padding-left: .3em;
|
td.text {
|
||||||
text-align: left;
|
color: #000;
|
||||||
}
|
font-size: 12px;
|
||||||
td.data2
|
}
|
||||||
{
|
th {
|
||||||
background-color: #ddd;
|
text-align: left;
|
||||||
vertical-align: top;
|
}
|
||||||
padding-left: .3em;
|
th.header {
|
||||||
text-align: left;
|
border-bottom: #666 1px solid;
|
||||||
}
|
vertical-align: bottom;
|
||||||
.outofdate
|
}
|
||||||
{
|
input,
|
||||||
background-color: #faa;
|
textarea,
|
||||||
padding-left: .3em;
|
select {
|
||||||
text-align: left;
|
background-color: #6c83b0;
|
||||||
}
|
font-family: monospace;
|
||||||
td.text
|
font-size: 12px;
|
||||||
{
|
background-color: #ccc;
|
||||||
color: #000;
|
border: #000 1px solid;
|
||||||
font-size: 12px;
|
color: #111;
|
||||||
}
|
}
|
||||||
th
|
input.button {
|
||||||
{
|
background-color: #fff;
|
||||||
text-align: left;
|
color: #6c83b0;
|
||||||
}
|
border: 1px solid #6c83b0;
|
||||||
th.header
|
font-size: 12px;
|
||||||
{
|
padding: 2px;
|
||||||
border-bottom: #666 1px solid;
|
}
|
||||||
vertical-align: bottom;
|
/* vim:ts=2:sw=2:et:enc=utf-8:
|
||||||
}
|
* */
|
||||||
|
|
||||||
input,textarea,select
|
|
||||||
{
|
|
||||||
background-color: rgb(108,131,176);
|
|
||||||
font-family: monospace;
|
|
||||||
font-size: 12px;
|
|
||||||
background-color: #ccc;
|
|
||||||
border: #000000 1px solid;
|
|
||||||
color: #111111;
|
|
||||||
}
|
|
||||||
|
|
||||||
input.button
|
|
||||||
{
|
|
||||||
background-color: #fff;
|
|
||||||
color: rgb(108,131,176);
|
|
||||||
border: 1px solid rgb(108,131,176);
|
|
||||||
font-size: 12px;
|
|
||||||
padding: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
|
@ -1,121 +1,104 @@
|
||||||
/* Standard Fonts */
|
/* Standard Fonts */
|
||||||
span /* Applicable by default in all fonts */
|
span /* Applicable by default in all fonts */
|
||||||
{
|
{
|
||||||
color: #555;
|
color: #555;
|
||||||
font-family: Bitstream Vera Sans, Lucida Grande, Arial, sans-serif;
|
font-family: Bitstream Vera Sans, Lucida Grande, Arial, sans-serif;
|
||||||
}
|
}
|
||||||
span.f1 /* Important */
|
span.f1 /* Important */
|
||||||
{
|
{
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
}
|
}
|
||||||
span.f2 /* Title */
|
span.f2 /* Title */
|
||||||
{
|
{
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: rgb(108, 131, 176);
|
color: #6c83b0;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
span.f3 /* Sub Title */
|
span.f3 /* Sub Title */
|
||||||
{
|
{
|
||||||
color: #888;
|
color: #888;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
padding-right: 2px;
|
||||||
span.f4 /* Content Text */
|
}
|
||||||
{
|
span.f4 /* Content Text */
|
||||||
color: #444;
|
{
|
||||||
font-size: 12px;
|
color: #444;
|
||||||
}
|
font-size: 12px;
|
||||||
span.f5 /* Content Small */
|
}
|
||||||
{
|
span.f5 /* Content Small */
|
||||||
color: #333;
|
{
|
||||||
font-size: 11px;
|
color: #333;
|
||||||
}
|
font-size: 11px;
|
||||||
span.f6 /* Red Message */
|
}
|
||||||
{
|
span.f6 /* Red Message */
|
||||||
color: #b06d6e;
|
{
|
||||||
font-size: 14px;
|
color: #b06d6e;
|
||||||
font-weight: bold;
|
font-size: 14px;
|
||||||
}
|
font-weight: bold;
|
||||||
span.f7 /* Green Message */
|
}
|
||||||
{
|
span.f7 /* Green Message */
|
||||||
color: #6db06d;
|
{
|
||||||
font-size: 14px;
|
color: #6db06d;
|
||||||
font-weight: bold;
|
font-size: 14px;
|
||||||
}
|
font-weight: bold;
|
||||||
span.fix /* Monospace fixed-font */
|
}
|
||||||
{
|
span.fix /* Monospace fixed-font */
|
||||||
color: #000;
|
{
|
||||||
font-family: monospace, fixed, terminal;
|
color: #000;
|
||||||
font-size: 12px;
|
font-family: monospace, fixed, terminal;
|
||||||
}
|
font-size: 12px;
|
||||||
span.error /* Content Text */
|
}
|
||||||
{
|
span.error /* Content Text */
|
||||||
color: #900;
|
{
|
||||||
font-size: 12px;
|
color: #900;
|
||||||
}
|
font-size: 12px;
|
||||||
span.warning /* Content Text */
|
}
|
||||||
{
|
span.warning /* Content Text */
|
||||||
color: #C0C000;
|
{
|
||||||
font-size: 12px;
|
color: #c0c000;
|
||||||
}
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Font Attribute Change (#6c83b0)*/
|
/* Font Attribute Change (#6c83b0)*/
|
||||||
span.blue
|
span.blue { color: #6c83b0; }
|
||||||
{
|
span.white { color: #fff; }
|
||||||
color: rgb( 108, 131, 176 );
|
span.black { color: #000; }
|
||||||
}
|
span.green { color: #6db06d; }
|
||||||
span.white
|
span.link
|
||||||
{
|
{
|
||||||
color: white;
|
color: #6c83b0;
|
||||||
}
|
font-weight: bold;
|
||||||
span.black
|
}
|
||||||
{
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
span.green
|
|
||||||
{
|
|
||||||
color: #6db06d;
|
|
||||||
}
|
|
||||||
span.link
|
|
||||||
{
|
|
||||||
color: rgb( 108, 131, 176 );
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Misc (c9d1e2) */
|
/* Misc (c9d1e2) */
|
||||||
span.preHeader
|
span.preHeader
|
||||||
{
|
{
|
||||||
color: rgb( 201, 209, 226 );
|
color: #c9d1e2;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
padding-right: 8px;
|
padding-right: 8px;
|
||||||
word-spacing: 8px;
|
word-spacing: 8px;
|
||||||
}
|
}
|
||||||
span.sideBarSmallHeader
|
span.sideBarSmallHeader
|
||||||
{
|
{
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
padding-right: 8px;
|
padding-right: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #0771a6;
|
color: #0771a6;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
color: #333;
|
color: #333;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
h1, h2, h3, h4 {
|
||||||
h1,h2,h3,h4 {
|
font-size: 16pt;
|
||||||
font-size: 16pt;
|
|
||||||
}
|
|
||||||
span.important {
|
|
||||||
color: #f00;
|
|
||||||
}
|
}
|
||||||
|
span.important { color: #f00; }
|
||||||
|
/* vim:ts=2:sw=2:et:enc=utf-8:
|
||||||
|
* */
|
||||||
|
|
Loading…
Add table
Reference in a new issue