-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
57 lines (51 loc) · 1.36 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>Mario Game | Chrome Extension</title>
<style>
@font-face {
font-family: SuperMario256;
src: url('../fonts/SuperMario256.ttf');
}
body {
position: relative;
width: 480px;
height: 192px;
font-family: Arial, sans-serif;
padding: 0px;
background: url('./images/popup.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
margin: 16px;
color: #FFFFFF;
}
.content {
position: absolute;
width: 50vw;
height: 100%;
color: #FFFFFF;
}
h2 {
font-family: SuperMario256;
font-size: 16px;
}
p {
font-size: 14px;
}
a {
text-decoration: underline;
font-style: italic;
color: #FFFFFF;
}
</style>
</head>
<body>
<div class="content">
<h2>Jump into adventure and save the Kingdom with Mario</h2>
<p>Replace the Chrome Dino game with the Mario game during network errors.</p>
<p>Developed by <a target="_blank" href="https://github.com/sohamgoswami07">Soham Goswami</a></p>
<p>Mario game code taken from <a target="_blank" href="https://varunbanka.github.io/">Varun Banka</a> | <a href="https://github.com/VarunBanka">Github</a></p>
</div>
</body>
</html>