-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathretro.html.template
More file actions
70 lines (64 loc) · 1.33 KB
/
retro.html.template
File metadata and controls
70 lines (64 loc) · 1.33 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
<!DOCTYPE html>
<meta http-equiv="refresh" content="30">
<html>
<head></head>
<style>
::-webkit-scrollbar {
display: none;
}
body {
border: 0px;
padding: 0px;
margin: 0px;
background-color: rgba(0, 0, 0, 1);
overflow: hidden;
}
.GameMsgContener {
background: rgba(77, 77, 77, 1);
padding: 0px;
margin-left: 0px;
height:100%;
}
.ConsoleLogo{
width:87%;
}
.image{
border-radius: 8px;
width: 100%;
}
.TxtConsole{
display: block;
margin-right: 0px;
margin-left: 0px;
width: 100%;
font-size: 52px;
font-family: 'Alef';
color:white;
text-align:center;
background-color: rgba(0, 0, 0, 1);
}
.TxtGameName, .TxtGameImg{
display: block;
color: rgb(255, 255, 255);
font-size: 52px;
font-family: 'Alef';
text-align:center;
word-break: break-word;
background-color: rgba(0, 0, 0, 1);
#border: solid white 1px;
}
</style>
<body>
<div class="GameMsgContener">
<div class="TxtConsole">
<img class="ConsoleLogo" src="../../../../E:/rom_unpack/CONSOLE/media/CONSOLE.svg" alt="CONSOLE"/>
</div>
<div class="TxtGameImg">
<img class="image" src="../../../../E:/rom_unpack/CONSOLE/media/images/CURRENTGAME.png"/ alt=" ">
</div>
<div class="TxtGameName">
<strong>CURRENTGAME</strong>
</div>
</div>
</body>
</html>