-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
318 lines (285 loc) · 5.94 KB
/
styles.css
File metadata and controls
318 lines (285 loc) · 5.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
/*
-----------------------------------------------------
Wizards.com: styles.css
Copyright (c) 2008 Wizards of the Coast
http: //www.wizards.com/
-----------------------------------------------------
*/
@import url("navigation.css");
/* Main content */
/* ----------------------------------------------- */
body, div, p, th, td, li, dd, input, select, textarea { /* Redundant selectors to help IE6 remember */
font-family: Verdana, Sans-Serif;
}
#bannerGraphic {
height: 70px;
width: 1000px;
position: relative;
background-image: url("/Magic/Assets/banner_multiverse.jpg");
z-index: 1;
}
#bannerGraphic h2#MagicLogo {
position: absolute;
top: 22px;
left: 5px;
}
body {
background: #000 url("/Magic/Assets/background_tile.jpg") top center repeat-x;
}
h1#WizardsLogo img {
top: 9px;
left: 15px;
width: 57px;
}
h1#WizardsLogo img a {
width: 57px;
}
#container { /* wraps around header, main content and footer */
width: 1020px;
position: relative;
z-index: 2;
}
#glow { /* the glow area that can be repeated */
float: left;
background: transparent url("/Magic/Assets/background_glow_tile.gif") top center repeat-y;
}
#glowStatic { /* the top of the glow area that can not be repeated */
padding: 0 10px;
float: left;
background: transparent url("/Magic/Assets/background_glow.gif") top center no-repeat;
}
#wrap { /* wraps around header, main content and footer (inside container) */
background: #dcd9c8 url("/Magic/Assets/background_all.jpg") top center no-repeat;
}
#wrapper { /* wraps around center and right-hand columns only */
float: right;
width: 817px;
margin: 0;
}
#adspaceRow {
margin: 11px 12px 0 5px;
}
#adspaceRow p, #adspaceRow img, #adspaceRow div {
width: 728px;
height: 90px;
margin: 0 auto;
overflow: hidden; /* added because there appeared to be some overfloat that was covering content. */
/* background: limegreen; */
}
#adspaceRow p iframe {
padding:0px;
margin:0px;
width:728px;
height:90px;
overflow:hidden;
border:none;
background:transparent;
}
#centerColumn {
float: left;
margin: 11px 12px 40px 5px;
display: inline; /* fixes ie6 double margin bug */
width: 800px;
}
#centerColumn a {
text-decoration: none;
}
#centerColumn a:hover {
text-decoration: underline;
}
#centerColumn #splash {
width: 800px;
height: 380px;
}
#centerColumn #slider {
width: 800px;
height: 150px;
margin: 9px 0 14px;
}
/* Right column (sidebar) */
/* ----------------------------------------------- */
#rightColumn {
float: right;
width: 160px;
margin-top: 11px;
}
#rightColumn .sideAd {
height: 600px;
/* background: limegreen; */
}
#rightColumn .sideAd iframe {
padding:0px;
margin:0px;
width:160px;
height:600px;
overflow:hidden;
border:none;
background:transparent;
}
/* Styles to create a Magic card */
/* ----------------------------------------------- */
.magic-card {
width: 223px;
height: 310px;
padding: 3px;
}
.magic-card-rotated {
width: 310px;
height: 223px;
padding: 3px;
}
.magic-card-wide {
width: 446px;
height: 310px;
padding: 3px;
}
.magic-card-wide-rotated {
width: 310px;
height: 446px;
padding: 3px;
}
.card-box {
position: absolute;
width: 705px;
height: 325px;
padding: 3px;
}
.card-box-rotated {
position: absolute;
width: 325px;
height: 705px;
padding: 3px;
}
.revealer {
position: relative;
overflow: hidden;
width: 235px;
height: 316px;
}
.revealer-rotated {
position: relative;
overflow: hidden;
width: 316px;
height: 235px;
}
.revealer-wide {
position: relative;
overflow: hidden;
width: 464px;
height: 316px;
}
.revealer-wide-rotated {
position: relative;
overflow: hidden;
width: 316px;
height: 470px;
}
.shiftleft {
left: -229px;
}
.shiftup {
top: -233px;
}
.magic-card-black {
background: transparent url("/Magic/Assets/card-border-black.jpg") no-repeat;
}
.magic-card-silver {
background: transparent url("/Magic/Assets/card-border-silver.jpg") no-repeat;
}
.magic-card-white {
background: transparent url("/Magic/Assets/card-border-white.jpg") no-repeat;
}
.magic-card-right {
float: right;
margin: 0 0 0 0.5em;
}
.magic-card-center {
margin: 0 auto;
}
.magic-card-left {
float: left;
margin: 0 0.5em 0 0;
}
.magic-card .card-art {
width: 200px;
height: 285px;
overflow: hidden;
}
.addbutton { width: 130px; }
.cardImageHover {
display:inline;
/*width:175px;
height:243px;*/
}
a.nodec { color: #990000; }
.cardgroup a.nodec { color: blue; }
.cotd .magic-card
{
width: 82px; height: 105px; padding-right: 5px;
}
.cotd .magic-card.magic-card-center
{
background-image: none;
float: left;
margin: 0; padding: 0;
}
.cotd .magic-card .card-art
{
width: 77px; height: 105px;
}
.cotd .magic-card .card-art img
{
width: 72px; height: 100px;
}
.cotd { min-height: 110px; padding: 5px; vertical-align: top; }
.cotd h4 { margin-left: 0; width: 200px; }
.right { margin-left: 200px; }
/* Store Locator Widget */
/* ----------------------------------------------- */
#miniloc_wrapper
{
left: 452px;
position: absolute;
top: 415px;
width: 291px;
}
#miniloc_wrapper #miniloc_text
{
color: black;
font-style: normal;
position: absolute;
left: 77px;
top: 6px;
height: 18px;
width: 135px;
background: transparent url('/mtg/images/daily/features/StoreLocatorButton_InputField.jpg') repeat scroll 0 0;
border: 0px;
padding-left: 5px;
}
#miniloc_wrapper .button
{
position: absolute;
left: 229px;
cursor: pointer;
}
#FooterBannerCMD
{
width: 620px;
position: relative;
}
.cost-nospace img
{
margin-right: -4px;
}
/*---------------- Social bar--------------------------*/
.socialbar
{
float: left;
width: 100%;
height: 29px;
}
.socialnetwork
{
float: left;
margin-top: 5px;
}