1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
.interesting {
background-color:#e8ffd8;
margin: 0;
}
.lineno {
background-color: #989;
}
.linenointeresting {
background-color: #bab;
}
.keyword {
background-color:#ffffdd;
border: 1px dotted green;
}
.keywordinteresting {
background-color:#e8e8cd;
border: 1px dotted green;
}
.highlightnormal {
font-weight:bold
}
.highlightspecial {
font-weight:bold;
color:red;
}
.commented {
color:grey;
}
.Topmenu {
width:100%;
height:54px;
background:#4d4d4d;
}
.RestContainer {
width:100%;
background:#ffffff;
overflow:auto;
}
.panel {
padding:1em;
width:450px;
background-color:#ffffff;
background-image:url('../img/CodeViewerDescareaBack.png');
background-repeat:repeat-x;
}
.codecontent {
margin-left:100px;
overflow:scroll;
}
body {
margin: 0;
padding: 0;
}
img {
border: 0px none;
}
.buttonstyle {
width:44px;
vertical-align:middle;
}
.verticalaligntext {
font-family: Arial;
font-size:22px;
font-weight: normal;
color: white;
}
.verticalaligntext a {
margin-left: 1em;
color: white;
}
.descriptionheading {
display: block;
margin-top: 1em;
font-family: Calibri,Sans-Serif;
font-size: 1.2em;
border-bottom: 1px dotted black;
font-weight: bold;
font-style: italic;
}
.description {
font-family:Helvetica,Arial,Sans-Serif;
font-size:14px;
text-align: justify;
}
.interestingdescription {
font-family:Helvetica,Arial,Sans-Serif;
font-size:14px;
background-color:#e8ffd8;
border-bottom: 1px solid green;
}
.codeexample {
font-family:LucindaConsole,Monospace;
font-size:14px;
font-weight:normal;
}
.exampleheading {
font-family:Helvetica,Arial,Sans-Serif;
font-size:12px;
font-weight:bold;
background-color:#e8e8ff;
border: 1px dotted lightblue;
}
pre {
overflow: auto;
margin-top: 0;
margin-bottom: 0;
}
|