X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=html%2F_css%2Fstandard.css;h=3ac7ab9e10f59854aba871e44ae9b67137b6df6b;hb=7ef3a34598e4f7b50b3ee1a8c34bbdf11c9352f6;hp=2327c0b43ddcbbffffceda4c7edccafbbfea017a;hpb=3f36aa55afe2e7ddf3054d019cd35750071f2163;p=cocanwiki.git diff --git a/html/_css/standard.css b/html/_css/standard.css index 2327c0b..3ac7ab9 100644 --- a/html/_css/standard.css +++ b/html/_css/standard.css @@ -1,5 +1,5 @@ /* Stylesheet for COCANWIKI. - * $Id: standard.css,v 1.5 2004/09/24 10:44:55 rich Exp $ + * $Id: standard.css,v 1.11 2004/10/09 08:33:02 rich Exp $ */ body { @@ -198,17 +198,14 @@ div#old_version { /* Tables. */ table.top_table { border-collapse: collapse; - border: 2px solid #000; + border: 1px solid #eee; } table.top_table th { - border: 1px solid #000; - background-color: #eee; vertical-align: top; } table.top_table td { - border: 1px solid #eee; vertical-align: top; } @@ -216,29 +213,230 @@ table.top_table td.number { text-align: right; } +table.top_table th.divider { + text-align: center; + padding: 6px; + border-top: 1px solid #eee; + border-bottom: 1px solid #eee; +} + table.left_table { border-collapse: collapse; - border: 2px solid #000; + border: 1px solid #eee; } table.left_table th { text-align: right; - border: 1px solid #000; - background-color: #eee; vertical-align: top; + padding-right: 1em; } table.left_table td { - border: 1px solid #eee; vertical-align: top; + padding: 3px; } table.left_table td.number { text-align: right; } +table.left_table th.divider { + text-align: center; + padding: 6px; + border-top: 1px solid #eee; + border-bottom: 1px solid #eee; +} + +/* Forms. */ +form > table { + margin-left: auto; + margin-right: auto; +} + +input:focus { + background-color: #eef; +} + +textarea:focus { + background-color: #eef; +} + /* Highlighting search terms. */ span.search_term { background-color: #ff0; border: 1px solid #eeb; -} \ No newline at end of file +} + +/* Search box. */ +div#search_div { + position: absolute; + left: 50%; + width: 49%; + top: 0.95em; + text-align: right; +} + +/* WikiForms - hide the edit link for the top section. */ +div#form_div p.edit_link { + display: none; +} + +/* Calendar extension. */ +table.cal_month { + border-collapse: collapse; + border: 1px solid #eee; + width: 90%; + margin-left: 5%; + margin-right: 5%; +} + +table.cal_month th.cal_month_header { + background-color: #eef; +} + +table.cal_month th.cal_month_header a.cal_month_left { + margin-right: 2em; +} + +table.cal_month th.cal_month_header a.cal_month_right { + margin-left: 2em; +} + +table.cal_month td.cal_month_events { +} + +table.cal_month td.cal_month_events ul { + list-style: none; + padding: 0px; + margin: 0px; +} + +table.cal_month td.cal_month_events li { + display: inline; + margin-right: 2em; +} + +table.cal_month tr.cal_month_row { + border: 1px solid #eef; + font-size: 0.7em; +} + +table.cal_month tr.cal_month_weekend { + background-color: #fef; +} + +table.cal_month tr.cal_month_row th { + text-align: right; + background-color: #eef; + border: 1px solid #fff; + padding-right: 1em; + width: 4em; +} + +table.cal_month tr.cal_month_row td { +} + +table.cal_month tr.cal_month_row ul { + list-style: none; + padding: 0px; + margin: 0px; +} + +table.cal_month tr.cal_month_row li { + display: inline; + margin-right: 2em; +} + +table.cal_year { + border-collapse: collapse; + border: 1px solid #eee; + width: 90%; + margin-left: 5%; + margin-right: 5%; +} + +table.cal_year th.cal_year_header { + background-color: #eef; +} + +table.cal_year th.cal_year_header a.cal_year_left { + margin-right: 2em; +} + +table.cal_year th.cal_year_header a.cal_year_right { + margin-left: 2em; +} + +table.cal_year td.cal_year_month { + vertical-align: top; +} + +table.cal_year_1m th.cal_year_1m_header { + background-color: #eef; +} + +table.cal_year_1m th.cal_year_1m_header_weekend { + background-color: #fef; +} + +/* +table.cal_year_1m tr.cal_year_1m_row td { + height: 1.4em; +} +*/ + +table.cal_year_1m tr.cal_year_1m_row a { + text-decoration: none; +} + +table.cal_year_1m tr.cal_year_1m_row td.cal_year_1m_weekend { + background-color: #fef; +} + +table.cal_year_1m tr.cal_year_1m_row td.cal_year_1m_events { + border: 2px solid #000; +} + +/* +table.cal_year_1m tr.cal_year_1m_row td.cal_year_1m_empty { + background: url(/_graphics/pinkhatch.png) repeat; +} +*/ + +table.cal_year td.cal_year_events ul { + list-style: none; + padding: 0px; + margin: 0px; +} + +table.cal_year td.cal_year_events li { + display: inline; + margin-right: 2em; +} + +table.cal_day { + border-collapse: collapse; + border: 1px solid #eee; + width: 90%; + margin-left: 5%; + margin-right: 5%; +} + +table.cal_day ul { + list-style: none; + padding: 0px; + margin: 0px; +} + +table.cal_day li { + display: inline; + margin-right: 2em; +} + +table.cal_day a.cal_day_left { + margin-right: 2em; +} + +table.cal_day a.cal_day_right { + margin-left: 2em; +}