This repository was archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (118 loc) · 5.25 KB
/
index.html
File metadata and controls
126 lines (118 loc) · 5.25 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Join Microsoft Developer Design</title>
<meta name="description" content="Microsoft is hiring technical product designers and design leaders.">
<meta property="og:title" content="Join Microsoft Developer Design">
<meta property="og:site_name" content="https://microsoft.github.io/join-dev-design/">
<meta property="og:url" content="https://microsoft.github.io/join-dev-design/">
<meta property="og:description" content="Microsoft is hiring technical product designers and design leaders">
<meta property="og:type" content="website">
<meta property="og:image" content="images/microsoft-og-image.png">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="theme/theme.css">
<link rel="shortcut icon" href="https://c.s-microsoft.com/favicon.ico?v2" type="image/x-icon">
</head>
<body class="js-theme-dark">
<div class="container">
<header>
<a class="logo-link" href="https://microsoft.com" title="Microsoft Website">
<div class="logo" role="img" aria-label="Microsoft Logo">
<span class="logo-tile logo-tile--red"></span>
<span class="logo-tile logo-tile--green"></span>
<span class="logo-tile logo-tile--blue"></span>
<span class="logo-tile logo-tile--yellow"></span>
</div>
</a>
</header>
<main>
<h1>
Microsoft is looking for designers who code to help create the most compelling developer tools & services on
the planet.
</h1>
<p>
We have open positions for technical product designers & design leaders in San Francisco, Seattle, and elsewhere.
</p>
<p>
We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future
of software development.
</p>
<p>
We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.
</p>
<p>
Interested? Send a PR with any improvement to
<a href="https://github.com/Microsoft/join-dev-design" title="GitHub repository join-dev-design by the Microsoft organization">microsoft/join-dev-design</a> or
<a href="mailto:dasiege@microsoft.com" title="Email address for dasiege@microsoft.com">email us</a>.
</p>
</main>
</div>
<footer class="footer">
<div class="theme">
<ul class="theme__list">
<li class="theme__item">
<button class="theme__button" value="dark" title="Enable dark theme" onclick="themeChange(this)">Dark</button>
</li>
<li class="theme__item">
<button class="theme__button" value="light" title="Enable light theme" onclick="themeChange(this)">Light</button>
</li>
</ul>
</div>
<div class="time-travel">
<p>
<a href="./time-travel/" title="See past versions of this site">Time Travel</a>
</p>
</div>
<p>
<span class="footer-piece">
Designed in
<a href="https://figma.com" title="Figma is the first interface design tool based in the browser, making it easier for teams to create software.">Figma</a>.
</span>
<span class="footer-piece">
Built in
<a href="https://code.visualstudio.com" title="Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.">Code</a>.
</span>
<span class="footer-piece footer-piece--separate">
Created by
<a href="https://github.com/Microsoft/join-dev-design/graphs/contributors" id="contributors" title="Contributors to the GitHub repository join-dev-design by the Microsoft organization">10</a> contributors on
<a href="https://github.com/Microsoft/join-dev-design" title="GitHub repository join-dev-design by the Microsoft organization">GitHub</a>.
</span>
</p>
<script>
fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')
.then(response => {
if (response.status !== 200) {
console.log('Looks like there was a problem. Status Code: ' + response.status);
return;
}
return response.json();
})
.then(data => document.getElementById('contributors').innerText = data.length)
.catch(err => console.log('Fetch Error :-S', err));
</script>
</footer>
<script async src="theme/theme.js"></script>
<script>
function logLogo(size) {
const style =
`font-family: Arial; font-size: ${size}px; line-height: 2em; color: #f33525; text-shadow: 0.5em 0 0 #81bc06, 0 0.5em 0 #05a6f0, 0.5em 0.5em 0 #ffba08;`;
console.log('%c■ ', style);
console.log(
'👋 Hi there! 👋\n\nIt seems you like to poke around as much as we do.\n\nhttps://github.com/Microsoft/join-dev-design'
);
}
logLogo(100);
</script>
<script>
function markDocumentAsLoaded() {
setTimeout(function () {
document.documentElement.dataset.loaded = true
}, 1000)
}
addEventListener('load', markDocumentAsLoaded);
</script>
</body>
</html>