Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
449 rajveer 1
/*
2
 * CSS Styles that are used on the jScrollPane demo site - these are custom to the site and
3
 * you shouldn't need to use them in your own implementations of jScrollPane.
4
 */
5
 
6
*
7
{
8
	margin: 0;
9
	padding: 0;
10
}
11
 
12
html,
13
body
14
{
15
	background: #aac;
16
}
17
 
18
body
19
{
20
	font: 13px/1.231 arial,helvetica,clean,sans-serif
21
}
22
 
23
#top-nav
24
{
25
	width: 780px;
26
	background: #50506d;
27
	padding: 0 20px 12px 0;
28
	margin: 0 auto 20px;
29
	overflow: hidden;
30
 
31
	-moz-border-radius: 5px;
32
	-webkit-border-radius: 5px;
33
	border-radius: 5px;
34
	-moz-border-radius-topleft: 0;
35
	-webkit-border-top-left-radius: 0;
36
	border-radius-topleft: 0;
37
	-moz-border-radius-topright: 0;
38
	-webkit-border-top-right-radius: 0;
39
	border-radius-topright: 0;
40
}
41
 
42
#top-nav img
43
{
44
	float: left;
45
}
46
 
47
#top-nav ul
48
{
49
	margin: 28px 0 0;
50
	overflow: hidden;
51
	float: right;
52
}
53
 
54
#top-nav ul li
55
{
56
	float: left;
57
	padding: 0 0 0 1em;
58
	list-style: none;
59
}
60
 
61
#top-nav ul li a
62
{
63
	color: #fff;
64
}
65
 
66
#top-nav ul li a:hover
67
{
68
	color: #ffa;
69
}
70
 
71
#top-nav ul li:last-child
72
{
73
	padding-right: 0;
74
}
75
 
76
#container
77
{
78
	width: 760px;
79
	background: #eeeef4;
80
	padding: 20px;
81
	margin: 20px auto;
82
 
83
	-moz-border-radius: 5px;
84
	-webkit-border-radius: 5px;
85
	border-radius: 5px;
86
}
87
 
88
h1
89
{
90
	font-size: 116%;
91
	color: #fff;
92
	background: #50506d;
93
	margin: 0 0 1em;
94
	padding:4px 8px 5px;
95
 
96
	-moz-border-radius: 3px;
97
	-webkit-border-radius: 3px;
98
	border-radius: 3px;
99
}
100
 
101
h2
102
{
103
	clear: left;
104
	font-size: 100%;
105
	color: #fff;
106
	background: #8b8b9f;
107
	margin: 1em 0;
108
	padding:4px 8px 5px;
109
 
110
	-moz-border-radius: 3px;
111
	-webkit-border-radius: 3px;
112
	border-radius: 3px;
113
}
114
 
115
h2 span.setting-type
116
{
117
	font-weight: normal;
118
}
119
 
120
p
121
{
122
	font-size: 93%;
123
	margin: 1em 0;
124
}
125
 
126
p.intro
127
{
128
	font-size: 116%;
129
	padding: 10px;
130
	background: #fff;
131
 
132
	-moz-border-radius: 3px;
133
	-webkit-border-radius: 3px;
134
	border-radius: 3px;
135
 
136
}
137
 
138
a
139
{
140
	color: #7171D4;
141
	text-decoration: none;
142
}
143
 
144
a:hover
145
{
146
	color: #f60;
147
}
148
 
149
ul
150
{
151
	padding: 0 0 0 1em;
152
}
153
 
154
ul li
155
{
156
	margin: 0 0 .5em;
157
}
158
 
159
ul.link-list li
160
{
161
	margin: 0;
162
}
163
 
164
ul p
165
{
166
	margin: 0;
167
}
168
 
169
/* For the form demo page */
170
 
171
form
172
{
173
	overflow: hidden;
174
}
175
 
176
fieldset
177
{
178
	border: 0;
179
	overflow: hidden;
180
}
181
 
182
legend
183
{
184
	font-weight: bold;
185
	margin: 1em 0;
186
}
187
 
188
label
189
{
190
	clear: left;
191
	float: left;
192
	margin: .5em 6px 0 0;
193
	text-align: right;
194
	width: 100px;
195
}
196
 
197
input,
198
select,
199
textarea
200
{
201
	float: left;
202
	border: 0;
203
	padding: 3px 5px;
204
	margin: 0 0 .5em;
205
}
206
 
207
input[type=button],
208
input[type=submit]
209
{
210
	clear: left;
211
	background: #fff;
212
	width: auto;
213
	margin: 0 0 0 106px;
214
}
215
 
216
pre
217
{
218
	background: #fff;
219
	padding: 10px;
220
	font-size: 93%;
221
	width: 740px;
222
 
223
	-moz-border-radius: 3px;
224
	-webkit-border-radius: 3px;
225
	border-radius: 3px;
226
	overflow: auto;
227
}