-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathogme.html
45 lines (45 loc) · 857 Bytes
/
ogme.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
<html lang="en">
<head>
<meta charset="utf-8">
<title>ogme</title>
<style type="text/css">
#main {
width: 300px;
margin: auto;
}
#img-preview {
width: 60%;
display: block;
margin: auto;
padding: 20px;
}
#img-preview:hover {
opacity: 0.5;
cursor: pointer;
}
caption, small, #img-url {
text-align: center;
display: block;
margin: auto;
outline: 0;
}
#img-url:link, #img-link:visited {
text-decoration: none;
}
#img-url:hover, #img-link:active {
text-decoration: underline;
}
</style>
</head>
<body>
<div id="main">
<img id="img-preview" src>
<caption>
<small>
<a id="img-url" href="" target="_blank"></a>
</small>
</caption>
</div>
<script src="popup.js"></script>
</body>
</html>