Skip to content
This repository has been archived by the owner on Apr 23, 2020. It is now read-only.

Commit

Permalink
unindent, don't zap whitespace before/after paragraphs.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44736 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
lattner committed Dec 9, 2007
1 parent 1c05726 commit 217543b
Showing 1 changed file with 65 additions and 79 deletions.
144 changes: 65 additions & 79 deletions www/content.css
Original file line number Diff line number Diff line change
@@ -1,84 +1,70 @@
/*
Consulted:
http://www.w3.org/TR/CSS1 &
http://www.w3.org/TR/CSS21/
*/
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;
}

html, body {
margin:0px;
padding:0px;
}
p {
margin-top:0;
margin-bottom:0;
}
.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);
}

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;
}
.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;
}


.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);
}
/* ****************** */
/* 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;
}

.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;
}
/* ****************** */
.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;
}
/* ****************** */

0 comments on commit 217543b

Please sign in to comment.