-
Notifications
You must be signed in to change notification settings - Fork 0
/
nightExtension.html
100 lines (90 loc) · 2.35 KB
/
nightExtension.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
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>Night Extension Popup</title>
<link href="https://fonts.googleapis.com/css?family=Lobster|Lobster+Two|Open+Sans+Condensed:500" rel="stylesheet">
<style>
html{
background-color: #314257;
}
.parent{
position: relative;
width: 400px;
background-color: #314257;
}
.son{
height: 200px;
}
.right{
float: right;
width: 50%;
height: 100%;
display: table;
font-family: 'Lobster Two', sans-serif;
color: #939ea5;
}
.title{
font-size: 3em;
text-align: center;
display: table-cell;
vertical-align: middle;
padding-bottom: 10%;
}
.left{
float:left;
width: 50%;
height: 100%;
}
.bottom{
width:100%;
height:40px;
position: absolute;
bottom: 0;
font-family: 'Open Sans Condensed', sans-serif;
text-align: center;
display: table;
}
.twitterIcon{
width: 70%;
padding-left: 15%;
padding-top: 7%;
}
.bottomText{
display: table-cell;
vertical-align: middle;
color: #939ea5;
font-size: 1.5em;
}
a{
text-decoration: none;
color: #4099FF;
outline: 0;
}
a:hover{
text-decoration: underline;
}
</style>
</head>
<body>
<div class="parent">
<div class="son">
<div class="left">
<img class="twitterIcon" src="Images/Big%20Twitter%20icon.png">
</div>
<div class="right">
<span class="title">Twitter<br>Shadow</span>
</div>
</div>
<div class="bottom">
<span class="bottomText">To use, please navigate to <a href='https://twitter.com' target='_blank'>twitter</a> and click this icon again.</span>
</div>
</div>
</body>
<script src="jquery.js"></script>
<script src="Scripts/execute.js"></script>
</html>