This repository has been archived by the owner on Apr 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
unindent, don't zap whitespace before/after paragraphs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44736 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
1 changed file
with
65 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
/* ****************** */ |