[xiph-commits] r7680 - in websites-plone/www: CSS SSI projects/audio/speex/CSS

atamido at motherfish-iii.xiph.org atamido at motherfish-iii.xiph.org
Wed Sep 1 21:15:03 PDT 2004


Author: atamido
Date: 2004-09-01 21:15:01 -0700 (Wed, 01 Sep 2004)
New Revision: 7680

Modified:
   websites-plone/www/CSS/screen-navbars.css
   websites-plone/www/CSS/screen.css
   websites-plone/www/SSI/rightside.inc
   websites-plone/www/SSI/topofbody.inc
   websites-plone/www/projects/audio/speex/CSS/screen.css
Log:
Design: Implementing changes as specified from monty.  Remove the tabs at the top. Remove the border and background from the content section.  Add an hrule below the pages title.  

Modified: websites-plone/www/CSS/screen-navbars.css
===================================================================
--- websites-plone/www/CSS/screen-navbars.css	2004-09-01 21:02:57 UTC (rev 7679)
+++ websites-plone/www/CSS/screen-navbars.css	2004-09-02 04:15:01 UTC (rev 7680)
@@ -1,38 +1,25 @@
 /* The main navigation bar at the top of the page that lists the projects is navbar1*/
 
 div#navbar1 {
-	margin: 0px;
-	padding: 0;
-	text-align: left;
-	white-space: nowrap;
+	text-align: center;
 }
 
 div#navbar1 ul {
-	padding: 0px;
-	margin: 0 0 0 2em;
-	border: 0px;
 }
 
 div#navbar1 li {
 	list-style-type: none;
-	display: inline; 
-	padding: 0px;
-	border-width: 0px;
-	margin: 0px;
+	display: inline;
 }
 
 div#navbar1 a {
-	border: 3px solid #484848;
-	border-top: none;
 	color: black;
 	font-weight: bold;
 	text-decoration: none;
-	padding: 0px 20px 6px 21px;
-	height: 1.2em;
-	margin-right: .2em;
 	text-transform: lowercase;
-	-moz-border-radius-bottomright: 10px;
-	-moz-border-radius-bottomleft: 10px;
+	border-style: solid;
+	border-width: 3px;
+	-moz-border-radius: 10px;
 }
 
 
@@ -45,7 +32,7 @@
 	text-transform: lowercase;
 	text-align: left;
 	padding: 10px 0px 10px 0px;
-	margin: 0 20px 20px -3px;
+	margin: 0 10px 20px -3px;
 	-moz-border-radius-bottomright: 10px;
 	-moz-border-radius-topright: 10px;
 }
@@ -92,27 +79,17 @@
 /* These are the properties necessary to make the tabs have the fancy hover effects*/
 
 div#navbar1 a#xiph {
-	border-color: #2b4556;
-	padding: 0px 3px 6px 35px;
-	font-weight: bold;
-	background:  no-repeat url(/Images/logos/xiph/20x35.png) top left; 
+	background:  no-repeat url(/Images/logos/xiph/35x20.png) top left; 
 }
-div#navbar1 a#vorbis	{ border-color: #8653ee; }
-div#navbar1 a#theora	{ border-color: #ef0e0e; }
-div#navbar1 a#speex	{ border-color: #119035; }
-div#navbar1 a#flac	{ border-color: #ffcf00; }
-div#navbar1 a#icecast	{ border-color: #484848; }
-div#navbar1 a#other	{ border-color: #0035ff; }
 
+
 div#navbar1 a#xiph:hover {
-	padding: 0px 3px 6px 35px;
-	font-weight: bold;
-	background:  no-repeat url(/Images/logos/xiph/20x35.png) top left #819cc9; 
+	background:  no-repeat url(/Images/logos/xiph/35x20.png) top left #819cc9; 
 }
-div#navbar1 a:hover		{ background: #aaaaaa; }
-div#navbar1 a#vorbis:hover	{ background: #aa75f4; }
-div#navbar1 a#theora:hover	{ background: #F9AFAF; }
-div#navbar1 a#speex:hover	{ background: #99d25d; }
-div#navbar1 a#flac:hover	{ background: #ffff56; }
-div#navbar1 a#icecast:hover	{ background: #aaaaaa; }
-div#navbar1 a#other:hover	{ background: #8099f4; }
+div#navbar1 a:hover		{ background: #aaaaaa; -moz-border-radius: 10px;  }
+div#navbar1 a#vorbis:hover	{ background: #aa75f4; -moz-border-radius: 10px; }
+div#navbar1 a#theora:hover	{ background: #F9AFAF; -moz-border-radius: 10px;  }
+div#navbar1 a#speex:hover	{ background: #99d25d; -moz-border-radius: 10px;  }
+div#navbar1 a#flac:hover	{ background: #ffff56; -moz-border-radius: 10px;  }
+div#navbar1 a#icecast:hover	{ background: #aaaaaa; -moz-border-radius: 10px;  }
+div#navbar1 a#other:hover	{ background: #8099f4; -moz-border-radius: 10px;  }

Modified: websites-plone/www/CSS/screen.css
===================================================================
--- websites-plone/www/CSS/screen.css	2004-09-01 21:02:57 UTC (rev 7679)
+++ websites-plone/www/CSS/screen.css	2004-09-02 04:15:01 UTC (rev 7680)
@@ -57,11 +57,8 @@
 
 #content {
 	display: table-cell;
-	border: 1px solid #666;
-	background: #eee;
 	margin: 0 20px 0 20px;
-	padding: 5px;
-	-moz-border-radius: 10px;
+	padding: 0px;
 }
 
 div.left {
@@ -87,6 +84,7 @@
 
 h1 {
 	margin: 0 0 .25em;
+	border-bottom: 3px solid #000000;
 }
 
 h2, h3, h4, h5, h6 {
@@ -104,4 +102,6 @@
 
 img { border: none; }
 
-
+abbr {
+	border-width: 2px;
+}

Modified: websites-plone/www/SSI/rightside.inc
===================================================================
--- websites-plone/www/SSI/rightside.inc	2004-09-01 21:02:57 UTC (rev 7679)
+++ websites-plone/www/SSI/rightside.inc	2004-09-02 04:15:01 UTC (rev 7680)
@@ -1,5 +1,6 @@
+
 <div id='rightside'>
 
-<div id='label'><img src='/Images/logos/xiph/xiph-cert.png' alt='Xiph.org'/></div>
+<div id='label'>Xiph's Open Media Technologies</div>
 
 <div id='content'>
\ No newline at end of file

Modified: websites-plone/www/SSI/topofbody.inc
===================================================================
--- websites-plone/www/SSI/topofbody.inc	2004-09-01 21:02:57 UTC (rev 7679)
+++ websites-plone/www/SSI/topofbody.inc	2004-09-02 04:15:01 UTC (rev 7680)
@@ -1,9 +1,8 @@
 
 </head>
+
 <body>
 
-<div id='thepage'>
-
 <div id='navbar1'>
 	<ul>
 		<li><a id='xiph' 	title='Xiph.org: Home of freedom' href="/" accesskey='0'>xiph.org foundation</a></li>
@@ -16,5 +15,4 @@
 	</ul>
 </div>
 
-
-
+<div id='thepage'>

Modified: websites-plone/www/projects/audio/speex/CSS/screen.css
===================================================================
--- websites-plone/www/projects/audio/speex/CSS/screen.css	2004-09-01 21:02:57 UTC (rev 7679)
+++ websites-plone/www/projects/audio/speex/CSS/screen.css	2004-09-02 04:15:01 UTC (rev 7680)
@@ -65,6 +65,9 @@
 * page-specific stuff *
 **********************/
 
+.firstLine {
+	border-bottom: 0px solid #000000;
+}
 
 .superImportant {
 	background: #faa;



More information about the commits mailing list