-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFP2_input_viewer.css
More file actions
119 lines (107 loc) · 2.03 KB
/
FP2_input_viewer.css
File metadata and controls
119 lines (107 loc) · 2.03 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
/*
FP2 Gamepad Viewer skin by Animach1ne twitch.tv/animach1ne
Using sprites Freedom Planet 2
*/
/* Base */
.controller.custom{
background: url(https://i.imgur.com/qtzJpDR.png);
width: 396px;
height: 180px;
}
.custom.disconnected {
background: url(https://i.imgur.com/SRRNFf8.png);
}
/* Dpad */
.custom .dpad{
position: absolute;
width: 144px;
height: 144px;
top: 18px;
left: 18px;
}
.custom .face{
position: absolute;
opacity: 0;
}
.custom .face.up{
top: 0px;
left: 42px;
background: url(https://i.imgur.com/kOdIiJK.png);
width: 60px;
height: 66px;
}
.custom .face.down{
top: 78px;
left: 42px;
background: url(https://i.imgur.com/35MGiKb.png);
width: 60px;
height: 66px;
}
.custom .face.left{
top: 42px;
left: 0px;
background: url(https://i.imgur.com/0RdHGX1.png);
width: 66px;
height: 60px;
}
.custom .face.right{
top: 42px;
left: 78px;
background: url(https://i.imgur.com/J9gfbXy.png);
width: 66px;
height: 60px;
}
.custom .face.pressed{
opacity: 1;
}
/* Start */
.custom .start{
position: absolute;
background: url(https://i.imgur.com/Vtbg2jT.png);
width: 48px;
height: 18px;
top: 12px;
left: 174px;
opacity: 0;
}
.custom .start.pressed{
opacity: 1;
}
/* ABXY */
.custom .button{
position: absolute;
opacity: 0;
}
.custom .button.a.pressed{
background: url(https://i.imgur.com/Vml67X2.png);
width: 60px;
height: 60px;
top: 108px;
left: 276px;
opacity: 1;
}
.custom .button.b.pressed{
background: url(https://i.imgur.com/Vml67X2.png);
width: 60px;
height: 60px;
top: 60px;
left: 324px;
opacity: 1;
}
.custom .button.x.pressed{
background: url(https://i.imgur.com/Vml67X2.png);
width: 60px;
height: 60px;
top: 60px;
left: 228px;
opacity: 1;
}
.custom .button.y.pressed{
background: url(https://i.imgur.com/Vml67X2.png);
width: 60px;
height: 60px;
top: 12px;
left: 276px;
opacity: 1;
}
/* END */