Added alphabet navigation, EventList and EventDetail, and RepositoryList.
svn: r13328
This commit is contained in:
parent
6d7a9f8c24
commit
b0083a862a
@ -71,6 +71,7 @@ img {
|
|||||||
background:none;
|
background:none;
|
||||||
}
|
}
|
||||||
.content {
|
.content {
|
||||||
|
padding-top: .5cm;
|
||||||
background-color:#FFF;
|
background-color:#FFF;
|
||||||
}
|
}
|
||||||
.content div.snapshot {
|
.content div.snapshot {
|
||||||
@ -226,6 +227,44 @@ a:visited {
|
|||||||
border-width:0 0 1px 0;
|
border-width:0 0 1px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Alphabet Navigation
|
||||||
|
----------------------------------------------------- */
|
||||||
|
div#alphabet {
|
||||||
|
width: 100%;
|
||||||
|
margin: 0;
|
||||||
|
background-color: #EAFFE4;
|
||||||
|
}
|
||||||
|
div#alphabet ul {
|
||||||
|
list-style:none;
|
||||||
|
min-width:770px;
|
||||||
|
height:24px;
|
||||||
|
margin:0;
|
||||||
|
padding: 0px 0px 0px 16px;
|
||||||
|
border-width: 2px 0px 4px 0px;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: #000;
|
||||||
|
}
|
||||||
|
div#alphabet ul li:after {
|
||||||
|
content:" |";
|
||||||
|
}
|
||||||
|
div#alphabet ul li {
|
||||||
|
margin:0;
|
||||||
|
float:left;
|
||||||
|
}
|
||||||
|
div#alphabet ul li a {
|
||||||
|
display:block;
|
||||||
|
padding: 4px 8px 4px 8px;
|
||||||
|
float:left;
|
||||||
|
font:bold 16px/100% sans;
|
||||||
|
margin:0;
|
||||||
|
text-decoration:none;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
div#alphabet ul li a:hover {
|
||||||
|
background-color: #000;
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
/* Main Table
|
/* Main Table
|
||||||
----------------------------------------------------- */
|
----------------------------------------------------- */
|
||||||
table {
|
table {
|
||||||
@ -450,6 +489,74 @@ table.individuallist tbody tr td.ColumnName a:hover {
|
|||||||
padding:.1em 10px .3em 10px;
|
padding:.1em 10px .3em 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* EventList and EventDetail
|
||||||
|
----------------------------------------------------- */
|
||||||
|
div#EventList, div#EventDetail { }
|
||||||
|
|
||||||
|
div#events table.eventlist {
|
||||||
|
margin-top: .3cm;
|
||||||
|
}
|
||||||
|
table.eventlist tbody tr.BeginName {
|
||||||
|
border-bottom: solid 1px #5D835F;
|
||||||
|
}
|
||||||
|
table.eventlist tbody tr td {
|
||||||
|
background-color: #D8F3D6;
|
||||||
|
padding: 4px 0px 4px 0px;
|
||||||
|
border-bottom: dashed 1px #000;
|
||||||
|
}
|
||||||
|
table.eventlist tbody tr td.ColumnEvent {
|
||||||
|
background-color: #FFF;
|
||||||
|
width: 20%;
|
||||||
|
}
|
||||||
|
table.eventlist tbody tr td.ColumnDate {
|
||||||
|
width: 16%;
|
||||||
|
}
|
||||||
|
table.eventlist tbody tr td.ColumnPlace {
|
||||||
|
background-color: #FFF;
|
||||||
|
width: 35%;
|
||||||
|
}
|
||||||
|
table.eventlist tbody tr td.ColumnSources {
|
||||||
|
background-color: #FFF;
|
||||||
|
width: 12%;
|
||||||
|
}
|
||||||
|
table.eventlist tbody tr td.ColumnNotes {
|
||||||
|
width: 25%;
|
||||||
|
}
|
||||||
|
table.eventlist tbody tr td.ColumnPerson {
|
||||||
|
background-color: #FFF;
|
||||||
|
width: 35%;
|
||||||
|
}
|
||||||
|
table.eventlist tbody tr td.ColumnPartner {
|
||||||
|
background-color: #FFF;
|
||||||
|
width: 35%;
|
||||||
|
}
|
||||||
|
div#EventList table.eventlist tbody tr td.ColumnEvent a,
|
||||||
|
div#EventList table.eventlist tbody tr td.ColumnPerson a,
|
||||||
|
div#EventList table.eventlist tbody tr td.ColumnPartner a {
|
||||||
|
display: block;
|
||||||
|
padding: .9em 10px;
|
||||||
|
}
|
||||||
|
div#EventDetail h3 {
|
||||||
|
font-size: xxx-large;
|
||||||
|
}
|
||||||
|
div#EventDetail h3:first-lettr {
|
||||||
|
color: #5D835F;
|
||||||
|
}
|
||||||
|
div#EventDetail table.eventlist {
|
||||||
|
margin: .5cm 0 .3cm 1.5cm;
|
||||||
|
width: 800px;
|
||||||
|
}
|
||||||
|
div#EventDetail table.eventlist tbody tr td.ColumnAttribute {
|
||||||
|
border-top: solid 1px #5D835F;
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
width: 20%;
|
||||||
|
}
|
||||||
|
div#EventDetail table.eventlist tbody tr td.ColumnEvent {
|
||||||
|
background-color: #D8F3D6;
|
||||||
|
border-top: solid 1px #5D835F;
|
||||||
|
}
|
||||||
|
|
||||||
/* Gallery
|
/* Gallery
|
||||||
----------------------------------------------------- */
|
----------------------------------------------------- */
|
||||||
#Gallery table.infolist tbody tr td.ColumnRowLabel, #Gallery table.infolist tbody tr td.ColumnDate {
|
#Gallery table.infolist tbody tr td.ColumnRowLabel, #Gallery table.infolist tbody tr td.ColumnDate {
|
||||||
@ -624,6 +731,27 @@ table.download td.Modified {
|
|||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Repositories
|
||||||
|
------------------------------------------------------ */
|
||||||
|
div#RepositoryList { }
|
||||||
|
|
||||||
|
div#RepositoryList table.repolist tbody tr td {
|
||||||
|
background-color: #EAFFE4;
|
||||||
|
}
|
||||||
|
div#RepositoryList table.repolist tbody tr td a {
|
||||||
|
display: block;
|
||||||
|
padding: .3em 10px;
|
||||||
|
}
|
||||||
|
div#RepositoryList table.repolist tbody tr td.ColumnRowLabel {
|
||||||
|
width: 9%;
|
||||||
|
}
|
||||||
|
div#RepositoryList table.repolist tbody tr td.ColumnType {
|
||||||
|
width: 15%;
|
||||||
|
}
|
||||||
|
div#RepositoryList table.repolist tbody tr td.ColumnName {
|
||||||
|
background-color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
/* Subsections
|
/* Subsections
|
||||||
----------------------------------------------------- */
|
----------------------------------------------------- */
|
||||||
#Home, #Introduction, #Contact {
|
#Home, #Introduction, #Contact {
|
||||||
|
Loading…
Reference in New Issue
Block a user