blob: ee3559dea1e3f36c8cce619f8959ac8928e74674 [file] [log] [blame]
Kevinbc8e50f2007-10-05 21:18:52 +00001/*
2 Consulted:
3 http://www.w3.org/TR/CSS1 &
4 http://www.w3.org/TR/CSS21/
5*/
6
7 html, body {
8 margin:0px;
9 padding:0px;
10 }
11 p {
Chris Lattner89ac4d02007-10-06 05:38:32 +000012 margin-top:0;
Kevinbc8e50f2007-10-05 21:18:52 +000013 margin-bottom:0;
14 }
15
16 ul, ol { /* Get rid of the extra space above and below all lists */
17 margin-top:0;
18 margin-bottom:0;
19 }
20 table,tr,td {
21 border:.3ex solid black;
22 border-collapse:collapse;
23 padding:.4ex;
24 }
25
26
27 .li_desc, .li_weak_desc { /* layout + formatting */
28 margin: 0 3ex;
29 font-size:.9em;
30 }
31 .li_weak_desc { /* color */
32 color:rgb(100,100,100);
33 }
34 .weak_txt {
35 font-size:.9em;
36 color:rgb(100,100,100);
37 }
38
39 .code {
40 font:Courier,Arial;
41 }
42 .quote {
43 display: block;
44 margin: 0 5em;
45 }
46 .key_point {
47 color:rgb(200,0,0);
48 }
49 .simple_list { /* simple lists that don't need to stand out */
50 margin-left:0;
51 }
52
53
54 /* ****************** */
55 /* Performance images */
56 .img_container {
57 display:inline;
58 background-color:rgb(250,250,250);
59 width:400px;
60 vertical-align:top;
61 margin:.1em;
62 }
63 [class=img_container] {
64 display:inline-block;
65 }
66 .img_container img {
67 display:block;
68 }
69
70 .img_title {
71 display:block;
72 font-weight:bold;
73 color:rgb(20,50,150);
74 }
75 .img_desc .img-notes {
76 display:block;
77 padding:.3em;
78 }
79 .img_notes {
80 font-style:italic;
81 color:rgb(50,50,50);
82 font-size:.9em;
83 }
84 /* ****************** */