/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 codeigniter/css/codeviewer.css

  • Committer: Gustav Hatvigsson
  • Date: 2013-05-28 15:19:50 UTC
  • mfrom: (90.1.18 lenasys2)
  • Revision ID: gustav.hartvigsson@gmail.com-20130528151950-94dkhjql3y0mphyp
merged Jonsson:s changes:
Fixed even/odd line color on cmsindex.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
body {
 
2
        margin:  0;
 
3
        padding: 0;
 
4
}
 
5
 
 
6
.codecontainer {
 
7
        margin-top: 50px;
 
8
        width: 100%;
 
9
        height: 100%;
 
10
        margin-left: auto;
 
11
        margin-right: auto;
 
12
}
 
13
 
 
14
.codecolumn1, .codecolumn2 {
 
15
        width: 50%;
 
16
        float: left;
 
17
}
 
18
 
 
19
.singleColumn1 .ace {
 
20
        height: 720px;
 
21
}
 
22
 
 
23
.doubleColumn1 .ace {
 
24
        height: 360px;
 
25
}
 
26
 
 
27
.singleColumn2 .ace {
 
28
        height: 720px;
 
29
}
 
30
 
 
31
.doubleColumn2 .ace {
 
32
        height: 360px;
 
33
}
 
34
 
 
35
.tripleColumn2 .ace {
 
36
        height: 240px;
 
37
}
 
38
 
 
39
.singleColumn1 .textContainer {
 
40
        height: 720px;
 
41
}
 
42
 
 
43
.doubleColumn1 .textContainer {
 
44
        height: 350px;
 
45
}
 
46
 
 
47
.singleColumn2 .textContainer {
 
48
        height: 710px;
 
49
}
 
50
 
 
51
.doubleColumn2 .textContainer {
 
52
        height: 350px;
 
53
}
 
54
 
 
55
.tripleColumn2 .textContainer {
 
56
        height: 230px;
 
57
}
 
58
 
 
59
.codeLanguage {
 
60
        float: right;
 
61
}
 
62
 
 
63
.codeFilename {
 
64
}
 
65
 
 
66
#doc a {
 
67
        background-color: #F0F0F0;
 
68
        border: 1px solid #ccc;
 
69
        padding: 1px;
 
70
}
 
71
 
 
72
.editorinfo {
 
73
        background-color: #0a68ad;
 
74
        color: white;
 
75
        font-size: 18px;
 
76
        padding-top: 5px;
 
77
        padding-bottom: 5px;
 
78
        padding-left: 10px;
 
79
        padding-right: 10px;
 
80
}
 
81
 
 
82
.textContainer {
 
83
        overflow: auto;
 
84
        padding: 5px;
 
85
}
 
86
 
 
87
.highlighted {
 
88
        background-color:  #ff00ff;
 
89
        opacity: 0.5;
 
90
        position: absolute;
 
91
        z-index: 4;
 
92
}
 
93
 
 
94
.interesting {
 
95
        background-color:  #ffff00;
 
96
        opacity: 0.5;
 
97
        position: absolute;
 
98
        z-index: 4;
 
99
}
 
100
 
 
101
section.group {
 
102
        width:100%;
 
103
        top:0px;
 
104
        height:auto;
 
105
}
 
106
section.group div.heading {
 
107
        font-size:14px;
 
108
        font-family:verdana;
 
109
        cursor:pointer;
 
110
        width:100%;
 
111
        height:auto;
 
112
        color:#fff;
 
113
        background-color:#305EB3;
 
114
        border-top:#628DDE 1px solid;
 
115
        border-bottom:#284882 1px solid;
 
116
}
 
117
section.group div.heading h1 {
 
118
        font-size:14px;
 
119
        font-weight:normal;
 
120
        padding:6px 0 6px 10px;
 
121
        max-width:60%;
 
122
}
 
123
section.inner.group div.heading {
 
124
        background-color:#444;
 
125
        border-top:#666 1px solid;
 
126
        border-bottom:#333 1px solid;
 
127
}
 
128
section.inner.group div.heading h1 {
 
129
        padding-left:13px;
 
130
        font-size:12px;
 
131
}
 
132
section.group div.content {
 
133
        width:100%;
 
134
        height:0px;
 
135
        min-height:auto;
 
136
        overflow:hidden;
 
137
        background-color:#333;
 
138
        border:solid #f00 0px;
 
139
        color:#fff;
 
140
}
 
141
section.group div.content a {
 
142
        color:inherit;
 
143
        font-family:Verdana;
 
144
        font-size:12px;
 
145
        text-decoration:none;
 
146
        display:list-item;
 
147
        padding:4px 0 4px 20px;
 
148
}
 
149
section.group div.content a:hover {
 
150
        text-decoration:underline;
 
151
}
 
152
section.group div.content a:first-child {
 
153
        padding-top:7px
 
154
}
 
155
section.group div.content a:last-child {
 
156
        padding:4px 0 10px 20px;
 
157
}
 
158
section.group div.heading.pink {
 
159
        background-color:#D9388B;
 
160
        border-top:#F772B7 1px solid;
 
161
        border-bottom:#A12263 1px solid;
 
162
}