-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewtab.html
160 lines (153 loc) · 6.15 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
155
156
157
158
159
160
<html>
<head>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js" integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.1/moment.min.js" crossorigin="anonymous"></script>
<script src="lib/jquery.unveil.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="
https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" media="screen" />
<script src="js/static.js" type="text/javascript"></script>
<script src="js/utils.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<script src="js/upgrade.js" type="text/javascript"></script>
<script src="lib/iconwc.js" type="text/javascript"></script>
<script src="lib/jqColorPicker.min.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen" />
<link rel="stylesheet" type="text/css" href="css/weathericons.css" media="screen" />
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
</head>
<body>
<div class="wallpaper" style="display: none;">
<img src=""/>
</div>
<div class="centered_box" style="display: none;">
<div class="inner">
<div class="time"> </div>
<div class="welcome_box">
<span class="welcome_text"></span>
<span contentEditable data-content-type="name" class="name selectable"></span>
</div>
</div>
</div>
<div class="widget_outer dimmed top_left">
<div class="bookmarks">
<div class="icons-container">
</div>
<div class="bookmarks_editor">
<input type="text" class="prefs_row bookmark_name" placeholder="Name (Google)"/>
<input type="text" class="prefs_row bookmark_link" placeholder="URL (http://google.com)"/>
<input type="text" class="prefs_row bookmark_color" placeholder="Color" readonly/>
<input type="text" class="prefs_row bookmark_icon" placeholder="Icon URL (Click dropdown for options)" list="bookmark_icon_picker">
<datalist id="bookmark_icon_picker" class="bookmark_icon_picker">
<option value=""></option>
</datalist>
<div class="buttons_container">
<button class="bookmarks_button_save">Save</button>
<button class="bookmarks_button_cancel">Cancel</button>
</div>
</div>
</div>
</div>
<div class="widget_outer dimmed top_right">
<div class="weather">
<div class="weather_currently">
<div class="weather_top">
<i class="weather_icon svg-icon wi"></i>
<div class="weather_high"></div>
<div class="weather_low"></div>
</div>
<div class="weather_location_container">
<div class="loader" style="display: none;"></div>
<span contentEditable data-content-type="weather_location" class="weather_location selectable"></span>
</div>
</div>
<div class="weather_forecast_container" style="display: none;">
<div class="weather_forecast">
<iframe></iframe>
</div>
</div>
</div>
</div>
<div class="widget_outer dimmed bottom_left">
<div contentEditable data-content-type="notes" class="notes selectable"></div>
</div>
<div class="widget_outer dimmed bottom_right">
<div class="prefs_panel" style="display: none;">
<div class="triangle"></div>
<div class="prefs_panel_inner">
<h1>Preferences</h1>
<div class="reset_wallpaper_container">
<button class="reset_wallpaper_button">Reset back to Daily Wallpaper</button>
</div>
<div class="clear"></div>
<div class="section">
<div class="wallpaper_thumbs">
</div>
<div class="prefs_row_container">
<div class="prefs_row">
<div class="label">Custom Image</div>
<div class="field">
<input type="text" data-content-type="custom_image" class="custom_image_field selectable" value=""/>
</div>
</div>
<div class="prefs_row">
<div class="label">Blur Background?</div>
<div class="field">
<input type="checkbox" data-content-type="blur" class="blur"/>
</div>
</div>
<div class="prefs_row">
<div class="label">Dim Background?</div>
<div class="field">
<input type="checkbox" data-content-type="dim" class="dim"/>
</div>
</div>
<div class="prefs_row">
<div class="label">Dim Corners?</div>
<div class="field">
<input type="checkbox" data-content-type="dim_corners" class="dim_corners"/>
</div>
</div>
<div class="prefs_row">
<div class="label">Name</div>
<div class="field">
<div contentEditable data-content-type="name" class="name selectable"></div>
</div>
</div>
<div class="prefs_row">
<div class="label">Location</div>
<div class="field">
<div contentEditable data-content-type="weather_location" class="weather_location selectable"></div>
</div>
</div>
<div class="prefs_row">
<div class="label">Use Celsius?</div>
<div class="field">
<input type="checkbox" data-content-type="celsius" class="celsius"/>
</div>
</div>
<div class="prefs_row" style="margin-top: 20px;">
<button class="reset_settings">Reset All Settings</button>
</div>
</div>
</div>
<h1>Bookmarks</h1>
<div class="clear"></div>
<div class="section">
<p>Simply <strong>right-click</strong> on one of the bookmark icons to change it to whatever site you want!</p>
</div>
<h1>Credits</h1>
<div class="clear"></div>
<div class="section">
<p>Extension created by <a href="http://skoshy.com?ref=minimalite" target="_blank">Stefan Koshy</a></p>
<p>Wallpapers from <a href="http://unsplash.com" target="_blank">Unsplash</a></p>
<p>Weather data from <a href="http://openweathermap.org" target="_blank">Open Weather Map</a></p>
<p>Weather forecast from <a href="http://forecast.io" target="_blank">Forecast.io</a></p>
</div>
</div>
</div>
<svg-icon class="prefs_button"><src href="/icons/sprite.svg#si-glyph-gear" /></svg-icon>
</div>
</body>
</html>