-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
executable file
·148 lines (141 loc) · 3.65 KB
/
popup.html
File metadata and controls
executable file
·148 lines (141 loc) · 3.65 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
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
148
<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
#container{
width: 450px;
margin: 0 auto;
height: 350px;
position: relative;
width: 400px
}
.input{
border-radius: 5px;
background: transparent;
color: white !important;
display: block
}
.application-outlet {
margin-left: 140px;
}
.linkster-sidebar {
width: 120px;
position: fixed;
bottom: 0;
left: 0;
padding: 10px 10px 0 10px;
background-color: #ffffff;
box-sizing: border-box;
z-index: 99998;
transform:translateX(-120px);
box-shadow: 0 0 12px -4px rgb(0 0 0 / 20%);
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.linkster-sidebar.active {
transform:translateX(0);
}
.linkster-sidebar .sidebar-handle{
position: absolute;
transform: translateX(120px);
left: 0;
bottom: 0;
width: 30px;
height: 30px;
background-color: #283e4a;
cursor: pointer;
z-index: 99999;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.linkster-sidebar.active .sidebar-handle{
transform:translateX(120px);
}
.linkster-sidebar .sidebar-handle:before{
content: "";
display: block;
box-sizing: border-box;
margin: 5px;
width: 20px;
height: 20px;
border: 2px solid #ffffff;
border-radius: 50%;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.linkster-sidebar .linkster-group {
margin-bottom: 10px;
border-bottom: 1px solid #e8e8e8;
}
.linkster-sidebar .aione-button{
background-color: #283e4a;
color: #ffffff;
padding: 4px;
margin: 0 0 10px 0;
border-radius: 4px;
width: 100%;
display: block;
font-size: 12px;
line-height: 22px;
text-align: center;
box-sizing: border-box;
-webkit-transition: all 200ms ease-in-out;
-moz-transition: all 200ms ease-in-out;
-o-transition: all 200ms ease-in-out;
transition: all 200ms ease-in-out;
}
.linkster-sidebar .aione-button:hover{
background-color: #0077b5;
color: #ffffff;
}
.linkster-sidebar .linkster-title,
.linkster-sidebar .linkster-subtitle{
color: #d8d8d8;
text-decoration: none;
text-align: center;
display: block;
white-space: nowrap;
text-overflow: ellipsis;
}
.linkster-sidebar .linkster-title{
font-size: 15px;
line-height: 30px;
}
.linkster-sidebar .linkster-subtitle{
font-size: 13px;
line-height: 18px;
}
.linkster-sidebar .linkster-title:hover,
.linkster-sidebar .linkster-subtitle:hover{
color:#ED6F1D;
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div id="main">
<div id="container">
<div>popup.html</div>
<div id="title">Linkster</div>
<div id="linkedin_console">
<button value="HELLO CONSOLE" >HELLO CONSOLE</button>
</div>
<div class="linkster-sidebar">
<div class="sidebar-handle"></div>
<div class="auto-linkedin-group">
<a class="aione-button linkster-grab-links" title="Grab Links" href="#">Grab Links</a>
<a class="aione-button linkster-grab-gomains" title="Grab Domains" href="#">Grab Domains</a>
<a class="aione-button linkster-send-links" title="Send Links" href="#">Send Links</a>
<a class="aione-button linkster-send-gomains" title="Send Domains" href="#">Send Domains</a>
</div>
</div>
</div>
</div>
</body>
</html>