*** empty log message ***
This commit is contained in:
95
venice-data/velocity/stylesheets/adv_base.vm
Normal file
95
venice-data/velocity/stylesheets/adv_base.vm
Normal file
@@ -0,0 +1,95 @@
|
||||
#*
|
||||
The contents of this file are subject to the Mozilla Public License Version 1.1
|
||||
(the "License"); you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
|
||||
WARRANTY OF ANY KIND, either express or implied. See the License for the specific
|
||||
language governing rights and limitations under the License.
|
||||
|
||||
The Original Code is the Venice Web Communities System.
|
||||
|
||||
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
|
||||
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
||||
Copyright (C) 2002 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
*#
|
||||
## More advanced stylesheet imported from the base one; styles usable by IE 4-6, Opera,
|
||||
## Mozilla/Netscape 6+
|
||||
body, body div, body p, body th, body td, body li, body dd {
|
||||
font-size: x-small; /* WinIE 4/5 */
|
||||
voice-family: "\"}\""; /* stops WinIE 4/5 */
|
||||
voice-family: inherit;
|
||||
font-size: small; /* IE6, Mozilla */
|
||||
}
|
||||
|
||||
body td.frametop, body div.frametop, body p.frametop {
|
||||
font-size: small;
|
||||
voice-family: "\"}\"";
|
||||
voice-family: inherit;
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
body td.smcontent, body div.smcontent, body p.smcontent {
|
||||
font-size: xx-small;
|
||||
voice-family: "\"}\"";
|
||||
voice-family: inherit;
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
body td.framefooter, body div.framefooter, body p.framefooter {
|
||||
font-size: xx-small;
|
||||
voice-family: "\"}\"";
|
||||
voice-family: inherit;
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
body span.chdrtitle {
|
||||
font-size: large;
|
||||
voice-family: "\"}\"";
|
||||
voice-family: inherit;
|
||||
font-size: x-large;
|
||||
}
|
||||
|
||||
body span.chdrsubtitle {
|
||||
font-size: small;
|
||||
voice-family: "\"}\"";
|
||||
voice-family: inherit;
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
body td.errorhead, body td.errorbody {
|
||||
font-size: small;
|
||||
voice-family: "\"}\"";
|
||||
voice-family: inherit;
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
html>body, html>body div, html>body p, html>body th, html>body td, html>body li, html>body dd {
|
||||
font-size: small; /* be nice to Opera */
|
||||
}
|
||||
|
||||
html>body td.frametop, html>body div.frametop, html>body p.frametop {
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
html>body td.smcontent, html>body div.smcontent, html>body p.smcontent {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
html>body td.framefooter, html>body div.framefooter, html>body p.framefooter {
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
html>body span.chdrtitle {
|
||||
font-size: x-large;
|
||||
}
|
||||
|
||||
html>body span.chdrsubtitle {
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
html>body td.errorhead, html>body td.errorbody {
|
||||
font-size: medium;
|
||||
}
|
||||
99
venice-data/velocity/stylesheets/normal_base.vm
Normal file
99
venice-data/velocity/stylesheets/normal_base.vm
Normal file
@@ -0,0 +1,99 @@
|
||||
#*
|
||||
The contents of this file are subject to the Mozilla Public License Version 1.1
|
||||
(the "License"); you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
|
||||
WARRANTY OF ANY KIND, either express or implied. See the License for the specific
|
||||
language governing rights and limitations under the License.
|
||||
|
||||
The Original Code is the Venice Web Communities System.
|
||||
|
||||
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
|
||||
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
||||
Copyright (C) 2002 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
*#
|
||||
## Simple stylesheet that Netscape 4 should understand; uses @import to hide more advanced
|
||||
## rules, since NN4 doesn't grok @import
|
||||
@import url("stylesheet-advanced.css");
|
||||
|
||||
body, div, p, th, td, li, dd {
|
||||
/* these selectors are for Netscape Navigator 4 */
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 11px; /* pixels are the only thing that's safe */
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #9999ff;
|
||||
}
|
||||
|
||||
.frametop {
|
||||
color: #ffffff;
|
||||
background-color: #6666cc;
|
||||
font-size: 15px; /* only thing that's safe */
|
||||
}
|
||||
|
||||
a.frametop, a.frametop:link, a.frametop:visited {
|
||||
color: #ffff00;
|
||||
}
|
||||
|
||||
div.frametopleft {
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
div.frametopright {
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.frameleft {
|
||||
color: #000000;
|
||||
background-color: #9999ff;
|
||||
}
|
||||
|
||||
.framecontent {
|
||||
color: #000000;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.content {
|
||||
color: #000000;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.smcontent {
|
||||
color: #000000;
|
||||
background-color: #ffffff;
|
||||
font-size: 9px;
|
||||
}
|
||||
|
||||
.framefooter {
|
||||
color: #000000;
|
||||
background-color: #ffffff;
|
||||
font-size: 9px;
|
||||
}
|
||||
|
||||
span.chdrtitle {
|
||||
color: #3333aa;
|
||||
font-weight: bold;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
span.chdrsubtitle {
|
||||
color: #3333aa;
|
||||
font-weight: bold;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
td.errorhead {
|
||||
color: #ffffff;
|
||||
background-color: #660000;
|
||||
text-align: center;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
td.errorbody {
|
||||
text-align: center;
|
||||
font-size: 15px;
|
||||
}
|
||||
Reference in New Issue
Block a user