diff options
author | Kevin <ar18@comcast.net> | 2007-10-05 21:18:52 +0000 |
---|---|---|
committer | Kevin <ar18@comcast.net> | 2007-10-05 21:18:52 +0000 |
commit | bc8e50fa28ac602c8858aa837076b700e4165eae (patch) | |
tree | 40b59896f307821b6217746a7a647a1601f1d5aa /www/content.css | |
parent | a5dc235fed0b59c5ba127208071accd6d8c67f68 (diff) |
new site -- the rest of it
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42651 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www/content.css')
-rw-r--r-- | www/content.css | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/www/content.css b/www/content.css new file mode 100644 index 0000000000..ee3559dea1 --- /dev/null +++ b/www/content.css @@ -0,0 +1,84 @@ +/*
+ 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 |