-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvictory.php
More file actions
91 lines (80 loc) · 2.56 KB
/
Copy pathvictory.php
File metadata and controls
91 lines (80 loc) · 2.56 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
<?php
session_start();
$_SESSION['start'] = '1';
?>
<html>
<head>
<meta charset="UTF-8">
<title>Victory</title>
<link rel="icon" href="favicon.png">
<style>
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
html, body {
height: 100%;
background-color: black;
}
html {
display: table;
margin: auto;
}
body {
display: table-cell;
vertical-align: middle;
}
img {
display:block;
max-width:100%;
border: solid black;
height: 30vh;
display: block;
margin: 0 auto;
}
.area {
text-align: center;
font-size: 6.5em;
color: #fff;
letter-spacing: -7px;
font-weight: 700;
text-transform: uppercase;
animation: blur .75s ease-out infinite;
text-shadow: 0px 0px 5px #fff, 0px 0px 7px #fff;
display: flex;
}
@keyframes blur {
from {
text-shadow:0px 0px 10px #fff,
0px 0px 10px #fff,
0px 0px 25px #fff,
0px 0px 25px #fff,
0px 0px 25px #fff,
0px 0px 25px #fff,
0px 0px 25px #fff,
0px 0px 25px #fff,
0px 0px 50px #fff,
0px 0px 50px #fff,
0px 0px 50px #7B96B8,
0px 0px 150px #7B96B8,
0px 10px 100px #7B96B8,
0px 10px 100px #7B96B8,
0px 10px 100px #7B96B8,
0px 10px 100px #7B96B8,
0px -10px 100px #7B96B8,
0px -10px 100px #7B96B8;
}
}
.button {
text-align: center;
display: block;
max-width: 100%;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="area">Vítězství!</div>
<img src="http://uploads.twitchalerts.com/image-defaults/sJJBQOT.gif">
<form action="game.php">
<input class="button" type="submit" value="RESET">
</form>
</body>
</html>