-
Notifications
You must be signed in to change notification settings - Fork 0
/
newtab.html
154 lines (154 loc) · 3.54 KB
/
newtab.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
151
152
153
154
<!doctype html>
<html><head>
<style type="text/css">
<!--
body {
font-family: Helvetica, Arial, sans;
font-size: 12px;
}
#controls {
padding-top: 5px;
}
#extract {
float: right;
}
#urls {
white-space: nowrap;
overflow: auto;
}
-->
body {
background-size: cover;
background-color: #efebd6;
}
#note1 {background: #fff3ab;border-top: 10px solid #e8ce2d;}
#note2 {background: #fecce5;border-top: 10px solid #e24996;}
#note3 {background: #ccf1c5;border-top: 10px solid #7def67;}
#note4 {background: #e7cfff;border-top: 10px solid #9d52e8;}
#note5 {background: #b0e0ec;border-top: 10px solid #57cfec;}
#note6 {background: #fcfcfa;border-top: 10px solid #777774;}
#note7 {background: #abd7ff;border-top: 10px solid #419df1;}
#note8 {background: #ffcbab;border-top: 10px solid #f38b4b;}
#note9 {background: #444444;color:#FFFFFF;border-top: 10px solid #060606;}
.row {
overflow: hidden;
text-align: center;
}
.notes {
position: relative;
display: inline-block;
width: 25%;
float: left;
margin-left: 4%;
margin-bottom: 3%;
}
.clear {
position: absolute;
top: 10px;
right: 0;
color: #888181;
background: url(./clear.png);
background-size: cover;
width: 20px;
height: 20px;
}
.notes textarea {
width: 100%;
min-height: 350px;
}
.pagination {
position: fixed;
top: 10px;
z-index: 9999;
text-align: center;
right: 15px;
}
.pagination a {
display: block;
margin: 10px;
text-decoration: none;
color: #000000;
background: #c8b2da45;
border-radius: 30%;
padding: 5px;
width: 15px;
}
.pagination a:hover {
background: #e7cfff;
}
label {
text-transform: uppercase;
display: block;
text-align: center;
font-size: 10px;
color: brown;
margin: 0 0 5px;
}
@media only screen and (max-width: 600px) {
.notes {
min-width: 500px;
margin: 0;
}
.notes textarea {
min-height: 300px;
}
}
</style>
<script type="text/javascript" src="newtab.js"></script>
</head>
<body>
<div class="pagination">
<a href="#note1">#1</a>
<a href="#note2">#2</a>
<a href="#note3">#3</a>
<a href="#note4">#4</a>
<a href="#note5">#5</a>
<a href="#note6">#6</a>
<a href="#note7">#7</a>
<a href="#note8">#8</a>
<a href="#note9">#9</a>
</div>
<label>Please press Enter to save!</label>
<div class="row row1">
<div class="notes">
<a href="javascript:void(0)" class="clear" id="clear1"></a>
<textarea id="note1"></textarea>
</div>
<div class="notes">
<a href="javascript:void(0)" class="clear" id="clear2"></a>
<textarea id="note2"></textarea>
</div>
<div class="notes">
<a href="javascript:void(0)" class="clear" id="clear3"></a>
<textarea id="note3"></textarea>
</div>
</div>
<div class="row row2">
<div class="notes">
<a href="javascript:void(0)" class="clear" id="clear4"></a>
<textarea id="note4"></textarea>
</div>
<div class="notes">
<a href="javascript:void(0)" class="clear" id="clear5"></a>
<textarea id="note5"></textarea>
</div>
<div class="notes">
<a href="javascript:void(0)" class="clear" id="clear6"></a>
<textarea id="note6"></textarea>
</div>
</div>
<div class="row row3">
<div class="notes">
<a href="javascript:void(0)" class="clear" id="clear7"></a>
<textarea id="note7"></textarea>
</div>
<div class="notes">
<a href="javascript:void(0)" class="clear" id="clear8"></a>
<textarea id="note8"></textarea>
</div>
<div class="notes">
<a href="javascript:void(0)" class="clear" id="clear9"></a>
<textarea id="note9"></textarea>
</div>
</div>
</body></html>