-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpopout.html
More file actions
85 lines (79 loc) · 2.4 KB
/
popout.html
File metadata and controls
85 lines (79 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PASSWDS.NINJA</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="bootstrap/examples/cover.css">
<style>
body {
width: 200px;
text-align: center;
}
.inner {
padding: 15px 0;
}
#passwords li {
display: block;
cursor: pointer;
font-size: 20px;
border-radius: 16pt;
/*width: 40vmin;*/
padding: 2px 0;
margin: 0 10px;
}
#passwords li:hover {
background-color: #99f;
}
#passwords li:active {
background-color: #9f9;
cursor: copy;
}
small {
display: block;
}
.more {
text-align: right;
}
.more,
.home {
font-weight: bold;
}
.more .glyphicon {
font-size: 10px;
}
.more a,
.home a {
text-decoration: none;
}
.home a:active,
.home a:hover,
.more a:active,
.more a:hover {
text-decoration: none;
color: #9f9;
}
</style>
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<small class="home"><br><a href="https://passwds.ninja/" target="_blank">passwds.ninja</a></small>
<div class="inner">
<ul id="passwords" class="list-unstyled">
</ul>
<small class="more"><a href="#"><span class="glyphicon glyphicon-refresh"></span> more</a></small>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="jquery-1.11.3.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="main.js"></script>
</body>
</html>