-
Notifications
You must be signed in to change notification settings - Fork 89
/
index.html
142 lines (127 loc) · 4.04 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Google Hacks</title>
<link rel="import" href="app/bower_components/polymer/polymer.html">
<link rel="import" href="app/bower_components/core-icon-button/core-icon-button.html">
<link rel="import" href="app/bower_components/core-toolbar/core-toolbar.html">
<link rel="import" href="app/bower_components/core-header-panel/core-header-panel.html">
<link rel="import" href="app/bower_components/core-input/core-input.html">
<link rel="import" href="app/bower_components/core-icons/core-icons.html">
<link rel="import" href="app/bower_components/core-icon/core-icon.html">
<link rel="import" href="app/bower_components/paper-radio-group/paper-radio-group.html">
<link rel="import" href="app/bower_components/paper-radio-button/paper-radio-button.html">
<link rel="import" href="app/bower_components/core-field/core-field.html">
<link rel="import" href="app/bower_components/paper-checkbox/paper-checkbox.html">
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="app/js/app.js"></script>
<style type="text/css">
body
{
margin: 0px;
padding: 0px;
}
#core_header_panel {
width: 100%;
height: 100%;
position: absolute;
}
#core_toolbar {
color: rgb(255, 255, 255);
background-color: rgb(79, 125, 201);
-webkit-app-region: drag;
}
#section {
height: 800px;
/*background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));*/
}
#input {
padding: 15px;
left: 130px;
top: 10px;
position: absolute;
width: 300px;
color: #fff;
font-size: 16px;
}
#paper_radio_group {
left: 10px;
top: 6px;
position: absolute;
width: 450px;
height: 40px;
}
#section1 {
left: 820px;
top: 400px;
position: absolute;
}
#section2 {
left: 1090px;
top: 510px;
}
#core_field {
left: 190px;
top: 86px;
position: absolute;
}
#core_icon {
left: 428px;
top: 20px;
position: absolute;
}
#paper_checkbox {
left: 20px;
top: 76px;
position: absolute;
}
#paper_checkbox1 {
left: 20px;
top: 106px;
position: absolute;
}
#paper_checkbox2 {
left: 20px;
top: 136px;
position: absolute;
}
#close
{
top: 6px;
right: 8px;
position: absolute;
}
#close img
{
width: 13px;
float: right;
margin-left: 7px;
}
</style>
</head>
<body>
<core-header-panel mode="standard" id="core_header_panel">
<core-toolbar id="core_toolbar">
<div id="div">Google Hacks</div>
<input id="input" placeholder="Search..." is="core-input">
<!--<core-icon icon="search" id="core_icon"></core-icon>-->
</core-toolbar>
<section id="section">
<paper-radio-group selected="Music" valueattr="label" selectedindex="0" id="paper_radio_group">
<paper-radio-button checked label="Music" id="paper_radio_button"></paper-radio-button>
<paper-radio-button label="Books" id="paper_radio_button1"></paper-radio-button>
<paper-radio-button label="Tools" id="paper_radio_button2"></paper-radio-button>
</paper-radio-group>
<paper-checkbox checked label=".mp3" id="paper_checkbox"></paper-checkbox>
<paper-checkbox checked label=".wma" id="paper_checkbox1"></paper-checkbox>
<paper-checkbox checked label=".mp3" id="paper_checkbox2"></paper-checkbox>
</section>
</core-header-panel>
<section id="section1"></section>
<div id="close">
<img id="closeButton" src="app/img/red.png">
<img id="minButton" src="app/img/yellow.png">
</div>
</body>
</html>