-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathannotationURL.html
126 lines (116 loc) · 3.83 KB
/
annotationURL.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
<!doctype html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/annotation.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<title>
Annotation of an URL if any.
</title>
</head>
<body>
<table width="100%" style="max-height: 200px; ">
<tr class="spaceUnder">
<td style="text-align: center;">
<div id ="horizontal_line" style="margin-bottom: 5px"></div>
<div class='container' style="background: white">
<img class='resize_fit_center'
src='images/logo.gif' />
</div>
<div id="horizontal_line" style="margin-top:3px"></div>
</td>
</tr>
</table>
<div>
<h2 style="text-align: center;"><strong>Annotations of Current URL</strong><br><span style="font-size: 50%;font-family:sans-serif"> From <a style="cursor: pointer;" href="http://hypothes.is/">Hypothes.is</a></span></h2>
</div>
<div class="container" id="container-whole">
</div>
<div class="row" id="row-contain" style=" display: flex;
align-items: stretch;
justify-content: center;" >
<div class="col-sm-6" style="width: 600px">
<div class="box">
<div class="top-div" id="top-div-contain">
<strong>
<span id="userinfo">
</span>
</strong>
<span id="date">
</span>
</div>
<div class="source" id="source-">
<span class="glyphicon glyphicon-globe" id="public"></span>
<span style="font-weight: 150%;color: #818181">Public on</span>
<span class="title" id="title-contain" style="color: red">
</span>
<span id="source-contain" style="word-wrap: break-word">
</span>
</div>
<div class="target-selector-exact" id="target-selector-exact-contain">
</div>
<div class="text" id="text-contain">
</div>
<div id="links">
</div>
</div>
</div>
</div>
</body>
</html>
<script src="scripts/annotationURL.js"></script>
<style>
body{
max-height: 100%;
}
@font-face {
font-family: Bebas Neue;
src: url("../fonts/BebasNeue.otf");
}
@font-face {
font-family: Gill Sans Light;
src: url("../fonts/GillSans-Light.ttf");
}
#horizontal_line{
margin: 0px;
padding: 0px;
border: 0px solid rgb(6, 117, 211);
font-size: 19px; font-style: inherit;
font-variant: inherit;
font-weight: inherit;
font-stretch: inherit;
line-height: 1;
font-family: sans-serif;
vertical-align: baseline;
box-sizing: content-box;
overflow: unset;
height: 1px;
position: relative;
width: auto;
display: flex;
background-color: rgb(9, 150, 248); color: rgb(255, 255, 255);
text-align: left;
align-items: center;
border-radius: 3px;
justify-content: center;
text-decoration: none;
}
.resize_fit_center {
max-width:100%;
max-height:100px;
}
h2{
font-family: Bebas Neue;
font-size: 50px;
}
.container{
padding-left: 15px;
padding-right: 15px;
}
p{
font-family:Gill Sans Light;
font-size: 20px;
}
</style>