-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGenesis_Input_Viewer.css
More file actions
101 lines (101 loc) · 2.07 KB
/
Genesis_Input_Viewer.css
File metadata and controls
101 lines (101 loc) · 2.07 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
/*Genesis Controller Styling by Animach1ne*/
/* *********************************************************** */
.controller.custom{
background: url(https://i.imgur.com/Zya66PC.png);
height: 297px;
width: 781px;
}
.custom.disconnected {
background: url(https://i.imgur.com/EtuaVMK.png);
}
.custom.disconnected div {
display: none;
}
/* *********************************************************** */
.custom .start{
position: absolute;
background: url(https://i.imgur.com/KjI5TDK.png);
width: 150px;
height: 101px;
top: 26px;
left: 304px;
opacity: 0;
}
.custom .start.pressed{
opacity: 1;
}
/* *********************************************************** */
.custom .abxy{
position: absolute;
width: 758px;
height: 251px;
top: 23px;
left: 347px;
}
/* base class used to simplify the sprite mapping */
.custom .button{
position: absolute;
width:121px;
height:121px;
background: url(https://i.imgur.com/SK3yMYl.png);
opacity: 0;
}
.custom .button.a.pressed{
top: 130px;
left: 0px;
opacity: 1;
}
.custom .button.b.pressed{
top: 56px;
left: 141px;
opacity: 1;
}
.custom .button.y.pressed{
top: 0px;
left: 290px;
opacity: 1;
}
/* *********************************************************** */
.custom .dpad{
position: absolute;
width: 238px;
height: 238px;
top: 29px;
left: 23px;
}
.custom .face{
position: absolute;
opacity: 0;
}
.custom .face.up{
background: url(https://i.imgur.com/Fnb7wh2.png);
width: 54px;
height: 98px;
left: 92px;
top: 0px;
}
.custom .face.down{
background: url(https://i.imgur.com/v3OXuu5.png);
width: 54px;
height: 98px;
left: 92px;
top: 140px;
}
.custom .face.left{
background: url(https://i.imgur.com/QJWKQhk.png);
width: 98px;
height: 54px;
left: 0px;
top: 92px;
}
.custom .face.right{
background: url(https://i.imgur.com/mCSgmtz.png);
width: 98px;
height: 54px;
left: 140px;
top: 92px;
}
.custom .face.pressed{
opacity: 1;
}
/*END Genesis Controller Styling*/