-
Notifications
You must be signed in to change notification settings - Fork 1
/
MovieRules.html
175 lines (153 loc) · 4.87 KB
/
MovieRules.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
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
<!DOCTYPE html>
<html>
<head>
<title>TASVideos Movie Rules WIP</title>
</head>
<body>
<div class="container">
<p class="question">Do you plan to
<span class="extra orange">submit
<span class="tooltip">You create a submission as a request to publish a movie on the site.</span>
</span>
to TASVideos.org?</p>
<div class="options">
<p class="answer green" onclick="ansclick(0,0,true)">Yes</p>
<p class="answer red" onclick="ansclick(0,1,false)">No</p>
</div>
<p class="explanation">You can do whatever you want!<br />You can create your TAS without following these rules. TASVideos.org is not the single authority on TASes.</p>
</div>
<br />
<div class="container">
<p class="question">
Does the TAS
<span class="extra orange">complete
<span class="tooltip">Completing a game means reaching the credits or an end screen.</span></span>the game?</p>
<div class="options">
<p class="answer green" onclick="ansclick(1,0,true)">Yes</p>
<p class="answer red" onclick="ansclick(1,1,false)">No</p>
</div>
<p class="explanation">We can only accept complete runs.</p>
</div>
<br />
<div class="container">
<p class="question">
Does the TAS beat all
<span class="extra orange">existing records<span class="tooltip">Existing records are those already on the site, or obtainable through other platforms such as YouTube, etc.</span></span>?</p>
<div class="options">
<p class="answer green" onclick="ansclick(2,0,true)">Yes</p>
<p class="answer red" onclick="ansclick(2,1,false)">No</p>
</div>
<p class="explanation">The site doesn't accept movies if there is a faster one. The site is not a leaderboard site.</p>
</div>
<br />
<div class="container">
<p class="question">
Does the TAS use
<span class="extra orange">cheats<span class="tooltip">Cheats are an external method of giving the player unintended control over the game.</span></span>?</p>
<div class="options">
<p class="answer red" onclick="ansclick(3,0,false)">Yes</p>
<p class="answer green" onclick="ansclick(3,1,true)">No</p>
</div>
<p class="explanation">Cheating gives an unfair advantage. We aim to push games to the limit using only intended methods.</p>
</div>
<br />
<div class="container">
<p class="question">
Is it a
<span class="extra orange">Super Mario Bros.<span class="tooltip">Don't act like you don't know Super Mario Bros.</span></span> movie?</p>
<div class="options">
<p class="answer green" onclick="ansclick(4,0,true)">No</p>
<p class="answer green" onclick="ansclick(4,1,true)">No</p>
<p class="answer green" onclick="ansclick(4,2,true)">No</p>
<p class="answer red" onclick="ansclick(4,3,false)">Yes</p>
<p class="answer green" onclick="ansclick(4,4,true)">No</p>
<p class="answer green" onclick="ansclick(4,5,true)">No</p>
<p class="answer green" onclick="ansclick(4,6,true)">No</p>
</div>
<p class="explanation">NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO</p>
</div>
</body>
<style>
body {
background: #EFEFEF;
}
.container {
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
display: inline-flex;
flex-direction: column;
flex-wrap: wrap;
row-gap: 1em;
border-bottom: 2px solid #808080;
padding-bottom: 3em;
padding-top: 3em;
padding-left: 2em;
padding-right: 2em;
}
.question {
font-size: 3em;
background: #DEE3E7;
border-radius: 10px;
padding: 0.1em;
margin: 0;
}
.options {
font-size: 2.5em;
column-gap: 1em;
display: inline-flex;
}
.answer {
cursor: pointer;
margin: 0;
border-radius: 10px;
color: white;
padding: 0.1em;
box-shadow: 1px 2px 5px #000000;
}
.red {
background: #C00000;
}
.green {
background: #20B020;
}
.orange {
color: #FFA000;
-webkit-text-stroke: 1px #800000;
}
.clicked {
box-shadow: inset 1px 2px 10px #000000;
}
.explanation {
background: #DEE3E7;
border-radius: 10px;
padding: 0.1em;
margin: 0;
transition: font-size 0.5s;
font-size: 0.0em;
}
.extra {
cursor: default;
position: relative;
}
.tooltip {
font-size: 0.7em;
-webkit-text-stroke: initial;
visibility: hidden;
background-color: #9a712c;
color: #FFFFFF;
text-align: center;
border-radius: 10px;
position: absolute;
top: 100%;
left: 50%;
width: 16em;
margin-left: -8em;
opacity: 0;
transition: opacity 0.3s;
}
.extra:hover .tooltip {
visibility: visible;
opacity: 1;
}
</style>
<script src="MovieRules.js"></script>
</html>