-
Notifications
You must be signed in to change notification settings - Fork 0
/
pushpin_media.html
150 lines (150 loc) · 2.91 KB
/
pushpin_media.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
148
149
150
<!DOCTYPE HTML>
<html>
<head>
<title>Pushpin - Media</title>
<meta charset="UTF-8">
<style type="text/css">
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 1em;
background-color: black;
overflow-x: scroll;
}
div, img {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.popup {
display: none;
position: absolute;
height: 300px;
width: 300px;
border: 2px solid gray;
}
.main_container {
width: 100%;
white-space: nowrap;
margin: 0 auto;
padding: 10px 0;
}
.media_column {
margin: 0 10px;
display: inline-block;
white-space: normal;
vertical-align: top;
width: 500px;
}
.media_header {
font-family: Verdana, Geneva, sans-serif;
font-weight: bold;
letter-spacing: 5px;
font-size: 3em;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
width: 100%;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
border-bottom: 2px solid;
}
.media_summary {
float: left;
position: absolute;
font-size: .5em;
font-weight: normal;
margin-top: -5px;
margin-left: 5px;
}
.media_row {
clear: both;
}
.prof_cell {
float: left;
width: 60px;
height: 60px;
border: 1px solid black;
margin: 5px 5px;
}
.prof_img {
width: 100%;
height: 100%;
}
.data_cell {
float: right;
width: 425px;
margin: 5px 0;
color: black;
}
.time {
font-size: .75em;
}
.trigger {
padding: 2px 5px;
}
.trigger a:link {
text-decoration: none;
color: black;
}
.trigger a:visited {
text-decoration: none;
color: black;
}
.trigger a:hover {
text-decoration: underline;
color: black;
}
.trigger a:active {
text-decoration: underline;
color: black;
}
.twitter {
border: 2px solid blue;
color: #4099FF;
background-color: white;/*lightblue;*/
-webkit-box-shadow: 0px 0px 10px green;
-moz-box-shadow: 0px 0px 10px green;
box-shadow: 0px 0px 10px green;
}
.flickr {
border: 2px solid #FF8000;
color: #FFC469;
background-color: white;/*#FFC469;*/
-webkit-box-shadow: 0px 0px 10px #FF8000;
-moz-box-shadow: 0px 0px 10px #FF8000;
box-shadow: 0px 0px 10px #FF8000;
}
.youtube, .shodan {
border: 2px solid red;
color: red;
background-color: white;/*pink;*/
-webkit-box-shadow: 0px 0px 10px red;
-moz-box-shadow: 0px 0px 10px red;
box-shadow: 0px 0px 10px red;
}
.picasa {
border: 2px solid purple;
color: purple;
background-color: white;/*red;*/
-webkit-box-shadow: 0px 0px 10px purple;
-moz-box-shadow: 0px 0px 10px purple;
box-shadow: 0px 0px 10px purple;
}
.instagram {
border: 2px solid blue;
color: #3F729B;
background-color: white;/*lightblue;*/
-webkit-box-shadow: 0px 0px 10px green;
-moz-box-shadow: 0px 0px 10px green;
box-shadow: 0px 0px 10px green;
}
</style>
</head>
<body>
<!-- lat:37.7697 lon:-122.3933 rad:1 -->
<div class="popup" id="popup"></div>
<div class="main_container"></div>
</body>
</html>