-
Notifications
You must be signed in to change notification settings - Fork 0
/
horizontal.html
105 lines (90 loc) · 2.56 KB
/
horizontal.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
<script src="scripts/pasterScript.js" charset="UTF-8"></script>
<html lang="en">
<head>
<meta http-equiv="cache-control" content="max-age=0">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="-1">
<meta http-equiv="expires" content="Tue, 01 Jan 1980 11:00:00 GMT">
<meta http-equiv="pragma" content="no-cache">
<title>Texthooker</title>
<style type="text/css">
body {
background-color: #000000;
color: #eeeeee;
}
body::-webkit-scrollbar {
background: #2f2f31;
}
body::-webkit-scrollbar:horizontal {
height: 12px;
}
body::-webkit-scrollbar:vertical {
width: 12px;
}
body::-webkit-scrollbar-thumb {
background: #656565;
border-radius: 8px;
}
body::-webkit-scrollbar-thumb:horizontal {
min-width: 50px;
}
body::-webkit-scrollbar-thumb:vertical {
min-height: 50px;
}
.container {
position: fixed;
top: 3px;
right: 5px;
display: inline-block;
}
#counter {
background-color: rgba(25, 25, 25, 0.8);
color: #9d9d9d;
font-size: .4em;
line-height: 100%;
float: left;
padding-left: 8px;
padding-right: 8px;
padding-top: 5px;
padding-bottom: 5px;
}
#remove_button {
background-color: rgba(25, 25, 25, 0.8);
color: #9d9d9d;
font-size: .4em;
line-height: 100%;
float: right;
margin-right: 10px;
padding-left: 8px;
padding-right: 8px;
padding-top: 5px;
padding-bottom: 5px;
cursor: pointer;
cursor: hand;
}
#web_button {
background-color: rgba(25, 25, 25, 0.8);
color: #9d9d9d;
font-size: .4em;
line-height: 100%;
float: right;
padding-left: 8px;
padding-right: 8px;
padding-top: 5px;
padding-bottom: 5px;
cursor: pointer;
cursor: hand;
}
#elements {
padding-top: 10px;
}
</style>
</head>
<body>
<div class="container">
<div id="remove_button" title="Remove last line">x</div>
<div id="counter" title="No. of characters / No. of lines">0 / 0</div>
</div>
<div id="elements" ></div>
</body>
</html>