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
|
.interesting {
background-color: #e8ffd8;
border-bottom: 1px solid green;
}
.lineno { background-color: #ffeedd }
.linenointeresting { background-color: #f8e0d8 }
.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: 44px;
background: #ffeedd;
background-image: url('../media../codeviewer/CodeViewerMenuareaBack.png');
}
.RestContainer {
width: 100%;
background: #ffffff;
overflow: auto;
}
.panel {
padding: 3px;
width: 450px;
border: 1px solid black;
background-color: #ffffff;
background-image: url('../media../codeviewer/CodeViewerDescareaBack.png');
background-repeat: repeat-x;
}
.codecontent {
margin-left: 100px;
border: 1px solid black;
overflow: auto;
}
body {
margin: 0;
padding: 0;
}
img { border: 0px none }
.menubarstyle {
width: 100%;
height: 44px;
background-image: url('../media../codeviewer/CodeViewerMenuareaBack.png');
}
.buttonstyle {
width: 44px;
vertical-align: middle;
}
.verticalaligntext {
vertical-align: middle;
font-family: Calibri,Sans-Serif;
font-size: 22px;
font-weight: bold;
font-style: italic;
}
.descriptionheading {
font-family: Calibri,Sans-Serif;
text-align: center;
font-size: 18px;
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;
}
|