/lenasys/0.1

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

« back to all changes in this revision

Viewing changes to trunk/Code Viewer Alt/Codeviewer/showcode.css

  • Committer: Henrik G.
  • Date: 2013-03-26 23:49:25 UTC
  • Revision ID: henrik.gustavsson@his.se-20130326234925-k2x3geqkhck4pmuq
Updated slider library

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:grey;
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 lightblue;
123
 
}
124
 
 
125
 
pre {
 
1
.interesting{background-color:#e8ffd8; margin: 0;}
 
2
 
 
3
.lineno{background-color: #989;}
 
4
.linenointeresting{background-color: #bab;}
 
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:54px;background:#4d4d4d;}
 
15
.RestContainer {width:100%;background:#ffffff;overflow:auto;}
 
16
.panel {padding:1em;width:450px;background-color:#ffffff;background-image:url('../img/CodeViewerDescareaBack.png');background-repeat:repeat-x;}                         
 
17
.codecontent {margin-left:100px;overflow:scroll;}                                                               
 
18
 
 
19
 body { margin: 0; padding: 0; }                                
 
20
 img { border: 0px none;}
 
21
 
 
22
.buttonstyle {width:44px;vertical-align:middle;}
 
23
.verticalaligntext { font-family: Arial; font-size:22px; font-weight: normal; color: white;}
 
24
.verticalaligntext a{ margin-left: 1em;  color: white; }
 
25
.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}
 
26
.description {font-family:Helvetica,Arial,Sans-Serif; font-size:14px;text-align: justify;}
 
27
.interestingdescription {font-family:Helvetica,Arial,Sans-Serif; font-size:14px;background-color:#e8ffd8;border-bottom: 1px solid green;}
 
28
.codeexample {font-family:LucindaConsole,Monospace; font-size:14px;font-weight:normal}                          
 
29
.exampleheading{font-family:Helvetica,Arial,Sans-Serif; font-size:12px;font-weight:bold;background-color:#e8e8ff;border: 1px dotted lightblue;}
 
30
 
 
31
pre
 
32
{
126
33
        overflow: auto;
127
34
        margin-top: 0;
128
35
        margin-bottom: 0;