/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: galaxyAbstractor
  • Date: 2013-04-10 15:49:32 UTC
  • mto: (19.1.5 lenasys)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: galaxyabstractor@gmail.com-20130410154932-4vizlzk0ar5gykvi
* Added an simple admin panel to the codeviewer-cmssy stuff
* Redesigned a bit like the mockups - still stuff to come
* Implemented the codeviewer + admin panel again using the Framework CodeIgniter instead 

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
        padding: 0;
4
4
}
5
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 {
 
6
#header {
 
7
        background-color: #3C3C3C;
 
8
        height:50px;
 
9
        width: 100%;
 
10
}
 
11
 
 
12
 
 
13
#nav div {
 
14
        display: inline-block;
 
15
        height: 50px;
 
16
        
 
17
}
 
18
 
 
19
#nav a {
 
20
        height: 30px;
 
21
        padding-top: 15px;
 
22
}
 
23
 
 
24
.btn-group {
 
25
        margin-top: -45px;
 
26
}
 
27
 
 
28
.dropdown-menu {
 
29
        background-color: #333333;
 
30
        width: 320px;
 
31
}
 
32
 
 
33
.dropdown-info {
 
34
        background-color: #0a68ad;
 
35
        width: 100%;
 
36
        color: #fff;
 
37
        font-size: 25px;
 
38
        font-weight: bold;
 
39
        text-align: center;
 
40
}
 
41
 
 
42
.dropdown-info p{
 
43
        margin-top: 15px;
 
44
}
 
45
 
 
46
.dropdown-menu a {
 
47
        color: white !important; /* important because otherwise bootstrap takes over */
 
48
}
 
49
 
 
50
#nav .separator {
 
51
        width: 0px; /* amazing, this seems to work */
 
52
        height:50px;
 
53
        border-left: 1px solid #111111;
 
54
        border-right: 1px solid #555555;
 
55
        margin-left: 5px;
 
56
        margin-right: 5px;
64
57
}
65
58
 
66
59
#doc a {
76
69
        padding-top: 5px;
77
70
        padding-bottom: 5px;
78
71
        padding-left: 10px;
79
 
        padding-right: 10px;
 
72
        margin-top: 10px;
80
73
}
81
74
 
82
 
.textContainer {
83
 
        overflow: auto;
84
 
        padding: 5px;
 
75
.ace { 
 
76
        height:500px;
 
77
        width:100%;
85
78
}
86
79
 
87
80
.highlighted {
96
89
        opacity: 0.5;
97
90
        position: absolute;
98
91
        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
 
}
 
92
}
 
 
b'\\ No newline at end of file'