-
Notifications
You must be signed in to change notification settings - Fork 17
/
event-schedule.html
159 lines (156 loc) · 5.09 KB
/
event-schedule.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
<link rel="import" href="bower_components/polymer/polymer.html">
<link rel="import" href="bower_components/core-icons/maps-icons.html">
<link rel="import" href="bower_components/core-icons/core-icons.html">
<polymer-element name="event-schedule" noscript>
<template>
<style>
.container {
margin-left: 5%;
margin-right: 5%;
margin-top: 30px;
margin-bottom: 30px;
}
table {
width: 100%;
font-size: 1.2em;
border:#ccc 1px solid;
}
table thead {
background-color: #4184f3;
color: #fff;
font-weight: bold;
}
table td {
position: relative;
padding-top: 13px;
padding-bottom: 13px;
background-color: #c5d9fb;
}
tbody {
text-align: center;
}
table td, table th {
padding: 7px;
}
td img {
display: none;
}
@media (min-width: 1120px) {
.container {
margin-left: auto;
margin-right: auto;
max-width: 800px;
}
}
@media screen and (max-width: 600px), (min-width: 751px) and (max-width: 930px) {
table thead {
display: none;
}
table td {
display: block;
border-bottom: white 1px solid;
position: relative;
padding-top: 13px;
padding-bottom: 13px;
text-align: left;
background-color: #c5d9fb;
}
td img, td core-icon {
display: inline-block;
width: 24px;
height: 24px;
}
.time {
background-color: #4184f3;
color: #fff;
font-weight: bold;
}
.nosession {
display: none;
}
.break {
color: green;
}
}
</style>
<div class="container">
<h1>日程安排</h1>
<p>本次活动由 Android 、Web 和 Codelab 三个分会场组成。Android 和 Web 会场是两个大型阶梯教室,也是本次活动的主会场。Codelab 是小型会议室,仅下午开放。</p>
<p>内容安排持续更新中,敬请关注。</p>
<table>
<thead>
<tr>
<th>时间</th>
<th>Android 分会场</th>
<th>Web 分会场</th>
<th>Codelab 分会场</th>
</tr>
</thead>
<tbody>
<tr>
<td class="time">8:30</td>
<td colspan="2">签到入场</td>
<td rowspan="7" class="nosession">-</td>
</tr>
<tr>
<td class="time">9:00</td>
<td colspan="2">开场介绍</td>
</tr>
<tr>
<td class="time">9:20</td>
<td colspan="2">Keynote by Bill Luan</td>
</tr>
<tr>
<td class="time">10:00</td>
<td><img src="images/icons/android.svg">走进 Android Wear</td>
<td><img src="images/icons/chrome.svg">游戏规则改变者 Service Worker</td>
</tr>
<tr>
<td class="time">10:50</td>
<td><img src="images/icons/android.svg">出门问问 Android Wear 开发故事</td>
<td><img src="images/icons/chrome.svg">理解响应式 Web 设计</td>
</tr>
<tr>
<td class="time">11:40</td>
<td colspan="2" class="break"><core-icon icon="maps:local-restaurant"></core-icon>午餐</td>
</tr>
<tr>
<td class="time">13:00</td>
<td><img src="images/icons/android.svg">Designing Material</td>
<td><img src="images/icons/chrome.svg">Polymer - 欢迎来到明天的世界</td>
</tr>
<tr>
<td class="time">13:50</td>
<td><img src="images/icons/android.svg">Android L 启示与变化</td>
<td><img src="images/icons/chrome.svg">工具化的前端类库开发</td>
<td><img src="images/icons/laboratory.png">Polymer Codelab</td>
</tr>
<tr>
<td class="time">14:40</td>
<td colspan=3 class="break"><core-icon icon="maps:local-cafe"></core-icon>茶歇</td>
</tr>
<tr>
<td class="time">15:00</td>
<td><img src="images/icons/android.svg">Material Design 与 Google Play</td>
<td><img src="images/icons/chrome.svg">NodeJS 酸奶框架</td>
<td><img src="images/icons/laboratory.png">Android Wear Codelab</td>
</tr>
<tr>
<td class="time">15:50</td>
<td rowspan=2 ><img src="images/icons/android.svg">闪电演讲1-6</td>
<td><img src="images/icons/chrome.svg">AngularJS与无后端开发实践</td>
<td rowspan=2 ><img src="images/icons/laboratory.png">-</td>
</tr>
<tr>
<td class="time">16:40</td>
<td><img src="images/icons/chrome.svg">豆瓣东西在响应式设计中的实践</td>
</tr>
<tr>
<td class="time">17:30</td>
<td colspan=3>大会结束</td>
</tr>
</tbody>
</table>
</div>
</template>
</polymer-element>