Merge pull request #498 from Unroll-Me/master
[mono.git] / mcs / tools / monkeydoc / Resources / ecmaspec.css
1 /*
2 * ecmaspec.css: CSS applied to ECMA C# specs
3 *
4 * Author: Mario Sopena
5 */
6
7 #ecmaspec {
8         background: #a4dda4; /*#83b183;*/
9         border: 2px solid #556655;
10 }
11
12 p {
13         text-align: justify;
14         margin-top: .5em;
15         margin-bottom: .5em;
16 }
17
18 span.keyword {
19    color: #a6563a;
20 }
21
22 a:link {
23         text-decoration: none;
24 }
25
26 a:hover {
27         text-decoration: underline;
28 }
29
30 div.code_example {
31    background: #f5f5dd;
32    border: 1px solid #cdcd82;
33    border: 1px solid black;
34    padding-left: 1em;
35    padding-bottom: 1em;
36    margin-top: 1em;
37    font-family: fixed;
38    white-space: pre;
39    margin-bottom: 1em;
40 }
41 div.code_ex_title {
42    position: relative;
43    top: -1em;
44    left: 30%;
45    background: #cdcd82;
46    border: 1px solid black;
47    color: black;
48    text-transform: uppercase;
49    width: 40%;
50    padding: 0.3em;
51    text-align: center;
52 }
53
54 span.symbol {
55         font-weight: bolder;
56 }
57
58
59 span.optional {
60         font-style: italic;
61 }
62
63 div.note {
64    background: #cdcd82;
65    border: 1px solid black;
66    padding: 1em;
67    margin-top: 1em;
68    margin-bottom: 1em;
69 }