-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
116 lines (110 loc) · 5.15 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
<!doctype html>
<!--
License of MDL template:
Material Design Lite
Copyright 2015 Google Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Tech company WFH policy under coronavirus outbreak.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<title>Tech Company WFH Policy</title>
<!-- Page styles -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.min.css">
<link rel="stylesheet" href="styles.css">
<style>
#view-source {
position: fixed;
display: block;
right: 0;
bottom: 0;
margin-right: 40px;
margin-bottom: 40px;
z-index: 900;
}
</style>
</head>
<body>
<div class="mdl-layout mdl-js-layout">
<div class="mdl-layout__content">
<div class="header-section mdl-typography--text-center">
<div class="header-font main-slogan">How does employer care your safety?</div>
</div>
<div class="list-section">
<table class="list-table mdl-data-table mdl-js-data-table mdl-shadow--0dp">
<thead>
<tr>
<th class="mdl-data-table__cell--non-numeric"></th>
<th>Company</th>
<th>Site</th>
<th>Policy</th>
<th>Source</th>
</tr>
</thead>
<tbody>
<tr class="entry-row">
<td class="entry-logo-col mdl-data-table__cell--non-numeric">
<img class="entry-logo" src="assets/img/logos/twitter.png" alt="Twitter">
</td>
<td class="entry-company-name-col">Twitter</td>
<td class="entry-site-col mdl-data-table__cell--non-numeric">Company wide</td>
<td class="entry-policy-col mdl-data-table__cell--non-numeric">Recommend WFH</td>
<td class="entry-source-col mdl-data-table__cell--non-numeric">
<a href="#">blind.com</a>
</td>
</tr>
<tr class="entry-row">
<td class="entry-logo-col mdl-data-table__cell--non-numeric">
<img class="entry-logo" src="assets/img/logos/microsoft.png" alt="Microsoft">
</td>
<td class="entry-company-name-col mdl-data-table__cell--non-numeric">Microsoft</td>
<td class="entry-site-col mdl-data-table__cell--non-numeric">Bellevue</td>
<td class="entry-policy-col mdl-data-table__cell--non-numeric">Partial WFH</td>
<td class="entry-source-col mdl-data-table__cell--non-numeric">
<a href="#">blind.com</a>
</td>
</tr>
<tr class="entry-row">
<td class="entry-logo-col mdl-data-table__cell--non-numeric">
<img class="entry-logo" src="assets/img/logos/linkedin.png" alt="Linkedin">
</td>
<td class="entry-company-name-col mdl-data-table__cell--non-numeric">Linkedin</td>
<td class="entry-site-col mdl-data-table__cell--non-numeric">Bay Area</td>
<td class="entry-policy-col mdl-data-table__cell--non-numeric">Shut down office, mandatory WFH</td>
<td class="entry-source-col mdl-data-table__cell--non-numeric">
<a href="#">blind.com</a>
</td>
</tr>
<tr class="entry-row">
<td class="entry-logo-col mdl-data-table__cell--non-numeric">
<img class="entry-logo" src="assets/img/logos/microsoft.png" alt="Microsoft">
</td>
<td class="entry-company-name-col mdl-data-table__cell--non-numeric">Microsoft</td>
<td class="entry-site-col mdl-data-table__cell--non-numeric">Bellevue</td>
<td class="entry-policy-col mdl-data-table__cell--non-numeric">Partial WFH</td>
<td class="entry-source-col mdl-data-table__cell--non-numeric">
<a href="#">blind.com</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<a href="#" target="_blank" id="view-source" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-color--accent mdl-color-text--accent-contrast">Github</a>
<script src="https://code.getmdl.io/1.3.0/material.min.js"></script>
</body>
</html>