source: OFFICIAL/FCM_V1.3/doc/user_guide/style.css

Last change on this file was 1, checked in by fcm, 15 years ago

creation de larborescence

File size: 1.7 KB
Line 
1/* Style sheet for FCM User Guide */
2
3@media screen {
4  body {
5    background-color: #ffffcc;
6    color: black;
7    font-family: Arial, Helvetica, sans-serif;
8    font-size: 12pt;
9  }
10}
11@media print {
12  body {
13    color: black;
14    font-family: Arial, Helvetica, sans-serif;
15    font-size: 12pt;
16  }
17}
18h1 {
19  background-color: #ccccff;
20  color: navy;
21  font-size: 200%;
22  font-weight: bold;
23  text-align: center;
24  padding: 20px;
25}
26h2 {
27  background-color: #ccccff;
28  color: navy;
29  font-size: 175%;
30  font-weight: bold;
31  padding: 15px;
32}
33h3 {
34  background-color: #ccccff;
35  color: #40668c;
36  font-size: 150%;
37  font-weight: bold;
38  padding: 10px;
39}
40h4 {
41  color: #40668c;
42  font-size: medium;
43  font-weight: bold;
44}
45h5 {
46  background-color: #ccccff;
47  color: #40668c;
48  font-size: medium;
49  font-weight: bold;
50}
51table {
52  margin-top: 5px;
53  margin-bottom: 10px;
54}
55
56th {
57  background-color: #ccccff;
58  white-space: nowrap;
59}
60
61td {
62  background-color: transparent;
63}
64
65li {
66  padding: 5px;
67}
68
69img {
70  margin: 5px;
71}
72
73:link {
74  color: blue;
75  text-decoration: underline;
76}
77
78:visited {
79  color: purple;
80  text-decoration: none;
81}
82
83:active, :hover {
84  color: blue;
85  text-decoration: underline;
86}
87
88address {
89  text-align: right;
90  font-size: small;
91  font-style: normal;
92}
93
94code {
95  font-family: "Courier New", Courier, monospace;
96}
97
98pre {
99  background-color: #ffffcc;
100  font-family: "Courier New", Courier, monospace;
101  padding: 10px;
102}
103
104.yell {
105  background-color: #ffffcc;
106  padding: 5px;
107}
108
109.yell td {
110  background-color: transparent;
111}
112
113.image {
114  text-align: center;
115  font-weight: bold;
116}
117
118.gray {
119  color: gray;
120}
121
122.mono {
123  font-family: "Courier New", Courier, monospace;
124}
125
126.pad th, .pad td {
127  padding: 5px;
128}
Note: See TracBrowser for help on using the repository browser.