/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to CodeViewer/codeviewer.css

  • Committer: gustav.hartvigsson at gmail
  • Date: 2013-04-04 06:42:25 UTC
  • mfrom: (4.7.13 GammaBear)
  • Revision ID: gustav.hartvigsson@gmail.com-20130404064225-jxssrfawo202of2s
fixed a few conflicts, removes some files to do so among other things.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.interesting{background-color:#e8ffd8;border-bottom: 1px solid green;}
2
 
 
3
 
.lineno{background-color:#ffeedd;}
4
 
.linenointeresting{background-color:#f8e0d8;}
5
 
 
6
 
.keyword{background-color:#ffffdd;border: 1px dotted green;}
7
 
.keywordinteresting{background-color:#e8e8cd;border: 1px dotted green;}
8
 
 
9
 
.highlightnormal{font-weight:bold}
10
 
.highlightspecial{font-weight:bold;color:red;}
11
 
 
12
 
.commented{color:grey;}
13
 
 
14
 
.Topmenu {width:100%;height:44px;background:#ffeedd;background-image:url('CodeViewerMenuareaBack.png');}
15
 
.RestContainer {width:100%;background:#ffffff;overflow:auto;}
16
 
.panel {padding:3px;width:450px;border: 1px solid black;background-color:#ffffff;background-image:url('CodeViewerDescareaBack.png');background-repeat:repeat-x;}                                
17
 
.codecontent {margin-left:100px;border: 1px solid black;overflow:auto;}                                                         
18
 
 
19
 
body { margin: 0; padding: 0; }                         
20
 
img { border: 0px none;}
21
 
 
22
 
.menubarstyle {width:100%;height:44px;background-image:url('CodeViewerMenuareaBack.png');}
23
 
 
24
 
.buttonstyle {width:44px;vertical-align:middle;}
25
 
.verticalaligntext {vertical-align:middle;font-family:Calibri,Sans-Serif;font-size:22px;font-weight:bold;font-style:italic}
26
 
 
27
 
.descriptionheading {font-family:Calibri,Sans-Serif;text-align: center;font-size:18px;font-weight:bold;font-style:italic;}
28
 
.description {font-family:Helvetica,Arial,Sans-Serif; font-size:14px;text-align: justify;}
29
 
.interestingdescription {font-family:Helvetica,Arial,Sans-Serif; font-size:14px;background-color:#e8ffd8;border-bottom: 1px solid green;}
30
 
.codeexample {font-family:LucindaConsole,Monospace; font-size:14px;font-weight:normal}                          
31
 
.exampleheading{font-family:Helvetica,Arial,Sans-Serif; font-size:12px;font-weight:bold;background-color:#e8e8ff;border: 1px dotted lightblue;}
32
 
                                
33
 
                                
 
1
.interesting {
 
2
    background-color: #e8ffd8;
 
3
    border-bottom: 1px solid green;
 
4
}
 
5
.lineno { background-color: #ffeedd }
 
6
.linenointeresting { background-color: #f8e0d8 }
 
7
.keyword {
 
8
    background-color: #ffffdd;
 
9
    border: 1px dotted green;
 
10
}
 
11
.keywordinteresting {
 
12
    background-color: #e8e8cd;
 
13
    border: 1px dotted green;
 
14
}
 
15
.highlightnormal { font-weight: bold }
 
16
.highlightspecial {
 
17
    font-weight: bold;
 
18
    color: red;
 
19
}
 
20
.commented { color: grey }
 
21
.Topmenu {
 
22
    width: 100%;
 
23
    height: 44px;
 
24
    background: #ffeedd;
 
25
    background-image: url('../media../codeviewer/CodeViewerMenuareaBack.png');
 
26
}
 
27
.RestContainer {
 
28
    width: 100%;
 
29
    background: #ffffff;
 
30
    overflow: auto;
 
31
}
 
32
.panel {
 
33
    padding: 3px;
 
34
    width: 450px;
 
35
    border: 1px solid black;
 
36
    background-color: #ffffff;
 
37
    background-image: url('../media../codeviewer/CodeViewerDescareaBack.png');
 
38
    background-repeat: repeat-x;
 
39
}
 
40
.codecontent {
 
41
    margin-left: 100px;
 
42
    border: 1px solid black;
 
43
    overflow: auto;
 
44
}
 
45
body {
 
46
    margin: 0;
 
47
    padding: 0;
 
48
}
 
49
img { border: 0px none }
 
50
.menubarstyle {
 
51
    width: 100%;
 
52
    height: 44px;
 
53
    background-image: url('../media../codeviewer/CodeViewerMenuareaBack.png');
 
54
}
 
55
.buttonstyle {
 
56
    width: 44px;
 
57
    vertical-align: middle;
 
58
}
 
59
.verticalaligntext {
 
60
    vertical-align: middle;
 
61
    font-family: Calibri,Sans-Serif;
 
62
    font-size: 22px;
 
63
    font-weight: bold;
 
64
    font-style: italic;
 
65
}
 
66
.descriptionheading {
 
67
    font-family: Calibri,Sans-Serif;
 
68
    text-align: center;
 
69
    font-size: 18px;
 
70
    font-weight: bold;
 
71
    font-style: italic;
 
72
}
 
73
.description {
 
74
    font-family: Helvetica,Arial,Sans-Serif;
 
75
    font-size: 14px;
 
76
    text-align: justify;
 
77
}
 
78
.interestingdescription {
 
79
    font-family: Helvetica,Arial,Sans-Serif;
 
80
    font-size: 14px;
 
81
    background-color: #e8ffd8;
 
82
    border-bottom: 1px solid green;
 
83
}
 
84
.codeexample {
 
85
    font-family: LucindaConsole,Monospace;
 
86
    font-size: 14px;
 
87
    font-weight: normal;
 
88
}
 
89
.exampleheading {
 
90
    font-family: Helvetica,Arial,Sans-Serif;
 
91
    font-size: 12px;
 
92
    font-weight: bold;
 
93
    background-color: #e8e8ff;
 
94
    border: 1px dotted lightblue;
 
95
}
 
 
b'\\ No newline at end of file'