forked from zachwlewis/projectcodename
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
147 lines (130 loc) · 4.47 KB
/
index.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<head>
<title>PROJECT: CODENAME</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
html,
body {
height: 100%;
background: #222;
/* The html and body elements cannot have any padding or margin. */
}
/* Wrapper for page content to push down footer */
#wrap {
min-height: 100%;
height: auto;
/* Negative indent footer by its height */
margin: 0 auto -60px;
/* Pad bottom by footer height */
padding: 0 0 60px;
}
/* Set the fixed height of the footer here */
#footer {
height: 60px;
background-color: #222;
}
.container .credit {
margin: 20px 0;
}
.container .credit a
{
color: #d43f3a;
}
.container .credit a:hover
{
color: #d43f3a;
text-decoration: line-through;
}
.main-app
{
background-color: #222;
}
.header span#codename
{
color: #eee;
font-weight:bold;
}
.header small
{
color: #d43f3a;
font-weight: bold;
}
.btn-lg
{
margin-bottom: 8px;
border-radius: 0;
}
h1, h2, h3
{
margin-top: 10px;
}
h3 small
{
text-decoration: line-through;
}
.sharing
{
margin-top: 20px;
}
.title
{
background: #fff;
}
</style>
</head>
<body>
<div id="wrap">
<div class="title navbar navbar-default navbar-static-top">
<div class="container">
<h3>PROJECT: CODENAME <small class="hidden-xs">FOR WHEN YOU NEED A CODENAME</small></h3>
</div>
</div>
<div class="container">
<div class="row main-app">
<div class="col-xs-12">
<h1 class="header"><small id="opType">PROJECT</small><br><span id="codename">CODENAME</span></h1>
</div>
<div class="col-xs-12 col-sm-6">
<a class="btn btn-lg btn-danger btn-block" href="#" role="button" id="newProject">It's been compromised!</a>
</div>
<div class="col-xs-12 col-sm-6">
<a class="btn btn-lg btn-default btn-block" href="#" role="button" id="switchType">It's an operation.</a>
</div>
</div>
<div class="row">
<div class="col-xs-12 sharing text-center">
<iframe src="http://ghbtns.com/github-btn.html?user=zachwlewis&repo=projectcodename&type=watch&count=true"
allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<a href="https://twitter.com/share" id="twitter" class="twitter-share-button" data-text="OPERATION: CODENAME — For when you need a codename." data-via="zachwlewis" data-url="http://projectcodename.com">Tweet</a>
<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprojectcodename.com&width&height=21&colorscheme=dark&layout=button_count&action=like&show_faces=false&send=false&appId=166438340229785" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:21px;" width="110" allowTransparency="true"></iframe>
</div>
</div>
</div>
</div>
<!-- Begin footer -->
<div id="footer">
<div class="container">
<div class="row">
<div class="col-xs-12">
<p class="text-muted credit text-right"><b>A <a href="http://zacharylew.is">ZACHARY LEWIS</a> JOINT</b></p>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="pc.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- Twitter integration -->
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<!-- Google analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45437517-1', 'projectcodename.com');
ga('send', 'pageview');
</script>
</body>
</html>