forked from JoshuaKGoldberg/Old-Deleted-FullScreenMario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.css
103 lines (87 loc) · 1.51 KB
/
default.css
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
body {
margin: 0;
padding: 0;
background: black;
color: white;
font-size: 21px;
font-family: "Press Start";
text-transform: uppercase;
line-height: 117%;
}
/* General Positioning */
#header {
position: absolute;
height: 49px;
width: 100%;
background-image:url('Theme/Header.gif');
background-repeat:no-repeat;
background-color:#070707;
}
iframe {
position: absolute;
margin-top: 49px;
width: 100%;
height: 462px;
border: 0;
z-index: -96;
}
#after {
position: absolute;
margin-top: 511px;
width: 100%;
}
/* #after bar */
.bar1 {
margin: 7px;
width: 280px;
text-align: center;
}
#out_editor { float: left; }
#out_mapselect { float: right; }
#out_options { margin: 7px auto; }
.expander {
margin-top: -24px;
padding: 7px;
width: 256px;
height: 24px;
display: none;
z-index: 98;
background: #009966;
border: 3px solid #99ffcc;
border-radius: 7px;
box-shadow: 0 3px 7px black inset;
font-size: 14px;
}
.bar1:hover .expander {
margin-top: -294px;
height: 280px;
display: block;
}
.bar1 div.label {
margin: 0 14px;
font-size: 14px;
}
/* Individual map buttons */
.maprectout {
margin: 1px 3px;
display: inline-block;
background: #ffcc33;
border: 3px outset;
cursor: pointer;
color: black;
font-size: 14px;
}
.maprect {
width: 49px;
height: 20px;
}
.maprect.off {
background: #996600;
}
.maprect.big { width: 231px; }
.maprect.larger { margin: 14px 0; }
.maprect.giant {
padding: 28px 0 70px 0;
font-size: 17px;
line-height: 210%;
}