Subversion Repositories SmartDukaan

Rev

Rev 4793 | Rev 5203 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2674 vikas 1
body{
2
    font-family:Verdana, Verdana, Geneva, sans-serif;
3
    font-size:12px;
4
    color:#000;
5
    line-height:18px;
6
    margin: 0 auto;
3711 mandeep.dh 7
    width:1200px;
2674 vikas 8
}
9
 
4241 anupam.sin 10
#line{
11
	background-color:black;
12
	width:100%;
13
	height:8px;
14
	float:left;
15
}
16
 
17
#separator-line{
18
	width:100%;
19
	color: black;
20
}
21
 
2674 vikas 22
#topbar{
23
	width:100%;
3578 mandeep.dh 24
    height:4%;
2674 vikas 25
    background-color: #EEF
26
}
27
 
3090 mandeep.dh 28
#topbar-left{
4241 anupam.sin 29
	float:left;
3578 mandeep.dh 30
	width:82%;
4241 anupam.sin 31
	height:inherit;
3090 mandeep.dh 32
}
33
 
34
#topbar-right{
35
	float:right;
3578 mandeep.dh 36
    width:18%;
4241 anupam.sin 37
    height:inherit;
3090 mandeep.dh 38
}
39
 
2674 vikas 40
#middle{
41
    width:100%;
3578 mandeep.dh 42
    height:96%;
2674 vikas 43
    background-color: #EFF
44
}
45
 
46
/*___ Sidebar ___*/
47
#sidebar{
48
	float:left;
49
	width:20%;
4241 anupam.sin 50
	max-height:2000px;
51
	min-height:1080px;
52
	background-color: lightBlue;
2674 vikas 53
}
54
 
55
/*___ infopane ___*/
56
#infopane{
57
    float:left;
58
    width:80%;
59
    height:100%;
60
    overflow: auto;
61
}
62
 
63
/*___ top-infopane ___*/
64
#top-infopane{
65
    float:left;
66
    width:100%;
67
}
68
 
69
/*___ bottom-infopane ___*/
70
#bottom-infopane{
71
    float:left;
72
    width:100%;
73
}
74
 
75
/*___ orderTopLeft ___*/
76
#orderTopLeft{
77
    float:left;
4241 anupam.sin 78
    width:33%;
2674 vikas 79
}
80
 
81
/*___ orderTopMiddle ___*/
82
#orderTopMiddle{
83
    float:left;
4241 anupam.sin 84
    width:34%;
2674 vikas 85
}
86
 
87
/*___ orderTopRight ___*/
88
#orderTopRight{
89
    float:left;
4241 anupam.sin 90
    width:33%;
2674 vikas 91
}
92
 
3090 mandeep.dh 93
/*___ orderMiddle ___*/
94
#orderMiddle{
2674 vikas 95
    float:left;
96
    width:100%;
97
}
98
 
3090 mandeep.dh 99
/*___ orderMiddleLeft ___*/
100
#orderMiddleLeft{
2674 vikas 101
    float:left;
102
    width:33%;
103
}
104
 
3090 mandeep.dh 105
/*___ orderMiddleMiddle ___*/
106
#orderMiddleMiddle{
2674 vikas 107
    float:left;
108
    width:33%;
109
}
110
 
3090 mandeep.dh 111
/*___ orderMiddleRight ___*/
112
#orderMiddleRight{
2674 vikas 113
    float:left;
114
    width:34%;
115
}
116
 
3090 mandeep.dh 117
/*___ orderMiddle ___*/
118
#orderBottom{
119
    float:left;
120
    width:100%;
121
}
122
 
2674 vikas 123
/*___ footer ___*/
124
#footer{
125
    width:100%;
3106 mandeep.dh 126
    height:0%;
2674 vikas 127
    background-color: #EEF
128
}
2714 vikas 129
 
130
#user-orders tr.selected {
131
	font-weight: bold;
2724 vikas 132
}
133
 
134
span.error{
135
	color: red;
3090 mandeep.dh 136
}
137
 
3546 mandeep.dh 138
div.message{
139
    color: red;
140
}
141
 
3339 mandeep.dh 142
#activity tr.selected {
143
    font-weight: bold;
144
}
145
 
4241 anupam.sin 146
#activity-table tr.selected {
147
    font-weight: bold;
148
}
149
 
3228 mandeep.dh 150
#tickets tr.selected {
151
    font-weight: bold;
152
}
153
 
4280 anupam.sin 154
.center-aligned {
155
	text-align:center;
156
}
157
 
3090 mandeep.dh 158
.width10{
159
    width:175px;
160
}
161
 
3397 mandeep.dh 162
.width-activity-type {
3339 mandeep.dh 163
    width:250px;
164
}
165
 
3106 mandeep.dh 166
.table-tr-odd {
167
	background-color: #EAEBFF;
3090 mandeep.dh 168
}
3106 mandeep.dh 169
 
170
.table-tr-even {
171
    background-color: white;
172
}
173
 
174
.home-page {
175
	cursor: pointer;
176
}
177
 
3397 mandeep.dh 178
.hidden {
3106 mandeep.dh 179
	display: none;
3137 mandeep.dh 180
}
181
 
3397 mandeep.dh 182
.bold {
3409 mandeep.dh 183
	font: italic;
184
	font-style: oblique;
4241 anupam.sin 185
	font-weight: bold;
3397 mandeep.dh 186
}
187
 
3151 mandeep.dh 188
.center-image {
189
  position: fixed;
190
  top: 50%;
191
  left: 50%;
192
  margin-top: -50px;
193
  margin-left: -100px;
3228 mandeep.dh 194
  z-index: 100;
3151 mandeep.dh 195
}
3206 mandeep.dh 196
 
197
div#mail-div {
198
	background-color: #EFF;
3519 mandeep.dh 199
	width:  740px;
200
    height: 380px;
3206 mandeep.dh 201
}
3228 mandeep.dh 202
 
3339 mandeep.dh 203
a:active {color:#0000FF;}
204
 
205
table.display {
206
    table-layout: fixed;
3411 mandeep.dh 207
}
208
 
3499 mandeep.dh 209
pre {
210
    white-space: pre-wrap;       /* css-3 */
211
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
212
    white-space: -pre-wrap;      /* Opera 4-6 */
213
    white-space: -o-pre-wrap;    /* Opera 7 */
214
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
215
}
3853 mandeep.dh 216
 
4241 anupam.sin 217
.CODButton {
3853 mandeep.dh 218
	width: 80px;
219
	font-size: smaller;
220
	height: 30px;
3996 mandeep.dh 221
}
222
 
4241 anupam.sin 223
.smallButton {
224
	width:70px;
225
	font-size:smaller;
226
	height:30px;
227
} 
228
 
3996 mandeep.dh 229
.underline {
230
	text-decoration: underline;
4142 mandeep.dh 231
}
232
 
233
.heading {
234
	font-weight: bold;
235
	font-size: larger;
236
}
4241 anupam.sin 237
 
238
.activity-description-bg {
239
	background-color: silver;
4681 amar.kumar 240
}
241
 
242
#cancelReasonBox {
243
	display: none;
4793 amar.kumar 244
}
245
 
246
.agent-option {
247
	font-size:16px;
248
}
249
 
250
.agent-form-error {
251
	background : yellow;	
5022 anupam.sin 252
}
253
 
254
.info {
255
	color : RED;
256
	font-size : 15px;
4241 anupam.sin 257
}