-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
104 lines (93 loc) · 3.14 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<title>sm64eep</title>
<style>
div#dropzone {
position: fixed;
top: 0;
left: 0;
z-index: 9999999999;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
transition: visibility 175ms, opacity 175ms;
display: table;
text-shadow: 1px 1px 2px #000;
color: #fff;
background: rgba(0, 0, 0, 0.45);
font: bold 42px Oswald, DejaVu Sans, Tahoma, sans-serif;
}
div#textnode {
display: table-cell;
text-align: center;
vertical-align: middle;
transition: font-size 175ms;
}
input,select{font:12px Liberation Sans, Arial, sans-serif;}
body{background:#357;font:12px Liberation Sans, Arial, sans-serif;margin:0;}
#bar{color:#000;background:#ccdbea;padding:8px 8px 8px 8px;}
#out{padding:0px 4px 0px 4px;}
div#titl,th,#hh
{
padding: 4px; padding-bottom:4px; color:#f2f6f9;background:#0c1014;
font-size: 14px;
text-align: left;
font-weight: bold;
}
tr:nth-child(odd),label:nth-child(odd){background:#eee;} label:hover{color:#333;background:#ddd;}
div#left,div#right{margin-top:4px;background:#fff;}
div#left{float:left;width:50%}
div#right{float:right;width:49.5%}
#fuck >input{margin:4px 4px;}
label{padding:1px 4px 1px 4px;display: block;}
input,select{vertical-align:middle;margin:0;}
table{width:100%;border-collapse: collapse;}
td{padding:1px 4px 2px 4px;}
input[type=text]{font-size:12px;padding:0;height:10px;}
td > input[type=checkbox]{
-webkit-filter: opacity(50%) grayscale(80%) brightness(85%);
-webkit-transition: -webkit-filter 200ms, background-size 500ms;
outline: none;
background: url('star.png') center no-repeat;
-webkit-appearance:none;background-size:13px; width:13px;height:13px;
}td > input[type=checkbox]:nth-child(7){
background: url('cannon.png') center no-repeat;
background-size:13px;
-webkit-filter: opacity(30%) grayscale(80%) brightness(75%);
}
td > input[type=checkbox]:hover{cursor:pointer;-webkit-filter: opacity(100%) grayscale(10%) brightness(105%);}
td > input[type=checkbox]:checked:hover{-webkit-filter: opacity(100%) grayscale(0%) brightness(105%);}
td > input[type=checkbox]:checked{-webkit-filter: opacity(100%) grayscale(0%) brightness(92%);}
.blr{-webkit-filter: blur(2px);}
#fileOpen{display:none}
</style>
<script src=app.js></script>
</head>
<body>
<div style="visibility:hidden; opacity:0" id="dropzone">
<div id="textnode">Drop</div>
</div>
<div id=tw>
<div id=bar>
<input id=sv1 value=Save type=button>
<input id=lod value=Load type=button>
<select>
<option>Game A</option>
<option>Game B</option>
<option>Game C</option>
<option>Game D</option>
</select>
<span id=nam></span>
<input type="file" id="fileOpen">
<div style="float:right">
<b>Sound:</b> <input type="text" size=2 id=snd> <b>Language:</b> <input type="text" size=2 id=lng>
</div>
</div>
<div id=out class=box>
<div id=left></div><div id=right></div><div id=clear></div>
</div>
</div>
</body>
</html>