[cfe-commits] r44736 - /cfe/trunk/www/content.css

Chris Lattner sabre at nondot.org
Sun Dec 9 00:40:27 PST 2007


Author: lattner
Date: Sun Dec  9 02:40:26 2007
New Revision: 44736

URL: http://llvm.org/viewvc/llvm-project?rev=44736&view=rev
Log:
unindent, don't zap whitespace before/after paragraphs.

Modified:
    cfe/trunk/www/content.css

Modified: cfe/trunk/www/content.css
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/content.css?rev=44736&r1=44735&r2=44736&view=diff

==============================================================================
--- cfe/trunk/www/content.css (original)
+++ cfe/trunk/www/content.css Sun Dec  9 02:40:26 2007
@@ -1,84 +1,70 @@
-/*
-	Consulted:
-	http://www.w3.org/TR/CSS1 &
-	http://www.w3.org/TR/CSS21/
-*/
-
-	html, body {
-		margin:0px;
-		padding:0px;
-	}
-	p {
-		margin-top:0;
-		margin-bottom:0;
-	}
-
-	ul, ol { /* Get rid of the extra space above and below all lists */
-		margin-top:0;
-		margin-bottom:0;
-	}
-	table,tr,td {
-		border:.3ex solid black;
-		border-collapse:collapse;
-		padding:.4ex;
-	}
-
-
-	.li_desc, .li_weak_desc { /* layout + formatting */
-		margin: 0 3ex;
-		font-size:.9em;
-	}
-	.li_weak_desc { /* color */
-		color:rgb(100,100,100);
-	}
-	.weak_txt {
-		font-size:.9em;
-		color:rgb(100,100,100);
-	}
-
-	.code {
-		font:Courier,Arial;
-	}
-	.quote {
-		display: block;
-		margin: 0 5em;
-	}
-	.key_point {
-		color:rgb(200,0,0);
-	}
-	.simple_list { /* simple lists that don't need to stand out */
-		margin-left:0;
-	}
-
-
-	/* ****************** */
-	/* Performance images */
-	.img_container {
-		display:inline;
-		background-color:rgb(250,250,250);
-		width:400px;
-		vertical-align:top;
-		margin:.1em;
-	}
-	[class=img_container] {
-		display:inline-block;
-	}
-	.img_container img {
-		display:block;
-	}
-
-	.img_title {
-		display:block;
-		font-weight:bold;
-		color:rgb(20,50,150);
-	}
-	.img_desc .img-notes {
-		display:block;
-		padding:.3em;
-	}
-	.img_notes {
-		font-style:italic;
-		color:rgb(50,50,50);
-		font-size:.9em;
-	}
-	/* ****************** */
\ No newline at end of file
+html, body {
+	margin:0px;
+	padding:0px;
+}
+
+/* FIXME: This is only for the status page */
+table,tr,td {
+	border:.3ex solid black;
+	border-collapse:collapse;
+	padding:.4ex;
+}
+
+.li_desc, .li_weak_desc { /* layout + formatting */
+	margin: 0 3ex;
+	font-size:.9em;
+}
+.li_weak_desc { /* color */
+	color:rgb(100,100,100);
+}
+.weak_txt {
+	font-size:.9em;
+	color:rgb(100,100,100);
+}
+
+.code {
+	font:Courier,Arial;
+}
+.quote {
+	display: block;
+	margin: 0 5em;
+}
+.key_point {
+	color:rgb(200,0,0);
+}
+.simple_list { /* simple lists that don't need to stand out */
+	margin-left:0;
+}
+
+
+/* ****************** */
+/* Performance images */
+.img_container {
+	display:inline;
+	background-color:rgb(250,250,250);
+	width:400px;
+	vertical-align:top;
+	margin:.1em;
+}
+[class=img_container] {
+	display:inline-block;
+}
+.img_container img {
+	display:block;
+}
+
+.img_title {
+	display:block;
+	font-weight:bold;
+	color:rgb(20,50,150);
+}
+.img_desc .img-notes {
+	display:block;
+	padding:.3em;
+}
+.img_notes {
+	font-style:italic;
+	color:rgb(50,50,50);
+	font-size:.9em;
+}
+/* ****************** */
\ No newline at end of file





More information about the cfe-commits mailing list