/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 Code Viewer Alt/Codeviewer/showcode.css

  • Committer: Gustav Hatvigsson
  • Date: 2013-05-29 11:07:14 UTC
  • mfrom: (124.1.1 lenasys)
  • Revision ID: gustav.hartvigsson@gmail.com-20130529110714-4iioizgqujt45riz
Merged Wikströms changes:

Added display of statistics in the sidepane

Show diffs side-by-side

added added

removed removed

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