[
  {
    "path": ".editorconfig",
    "content": "# EditorConfig is awesome: https://EditorConfig.org\nroot = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\ntrim_trailing_whitespace = true\ninsert_final_newline = true\nindent_style = space\nindent_size = 2\n\n[*.html]\nindent_size = 2\n\n[*.md]\ntrim_trailing_whitespace = false\n"
  },
  {
    "path": ".gitignore",
    "content": "time-travel/zips\n.DS_Store\n\n# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n\n# Runtime data\npids\n*.pid\n*.seed\n*.pid.lock\n\n# Directory for instrumented libs generated by jscoverage/JSCover\nlib-cov\n\n# Coverage directory used by tools like istanbul\ncoverage\n\n# nyc test coverage\n.nyc_output\n\n# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)\n.grunt\n\n# Bower dependency directory (https://bower.io/)\nbower_components\n\n# node-waf configuration\n.lock-wscript\n\n# Compiled binary addons (https://nodejs.org/api/addons.html)\nbuild/Release\n\n# Dependency directories\nnode_modules/\njspm_packages/\n\n# TypeScript v1 declaration files\ntypings/\n\n# Optional npm cache directory\n.npm\n\n# Optional eslint cache\n.eslintcache\n\n# Optional REPL history\n.node_repl_history\n\n# Output of 'npm pack'\n*.tgz\n\n# Yarn Integrity file\n.yarn-integrity\n\n# dotenv environment variables file\n.env\n\n# next.js build output\n.next\n"
  },
  {
    "path": ".vscode/settings.json",
    "content": "{\n  \"editor.formatOnSave\": true\n}\n"
  },
  {
    "path": "LICENSE",
    "content": "    MIT License\n\n    Copyright (c) Microsoft Corporation. All rights reserved.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE\n"
  },
  {
    "path": "README.md",
    "content": "# Join Microsoft Developer Design\n\nMicrosoft is hiring technical product designers and design leaders. [Learn more](https://microsoft.github.io/join-dev-design/).\n\n## Development\n\n```shell\n$ npm install\n$ npm start\n```\n\n### Time Travel\n\nTime travel displays past versions of the repo based on merged pull requests.\nThe build script in `time-travel` folder fetchs each merged pull request's `docs` folder content (except for `docs/time-travel/`) and store them in `docs/time-travel/history`, then writes data to `docs/time-travel/index.json` for later use. Currently this process has to be done manually.\n\n**Note**: Create a `.env` with your github's access token in order to fetch data from Github API.\n\n```shell\n# update build\n$ npm run build-timetravel\n```\n\nThe page for time-travel is intentionally kept separated from `docs/` (not reusing `docs/css/style.css`) so it's easier to maintain.\n\n---\n\nThere's a [Figma file](https://www.figma.com/file/Nkddv9KabDaTFtqZ5vlSzUxr/Developer-Design-Recruiting-Site?node-id=1%3A2) for the design but it's currently Microsoft internal.\n\n## Contributing\n\n_We have to include these for legal reasons:_\n\n- [Contributor License Agreement (CLA)](https://cla.microsoft.com).\n- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).\n"
  },
  {
    "path": "docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 1.3rem;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n@keyframes text-gradient-ltr {\n  to {\n    background-position: -600% center;\n  }\n}\n\n@keyframes text-gradient-rtl {\n  to {\n    background-position: 600% center;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n}\n\na:hover,\na:focus {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-yellow) 25%,\n    var(--brand-green) 50%,\n    var(--brand-blue) 75%,\n    var(--brand-yellow) 100%\n  );\n  background-size: 600% auto;\n  -webkit-text-fill-color: transparent;\n  -webkit-background-clip: text;\n  background-clip: text;\n}\n\nhtml[dir=\"ltr\"] a:not(.logo-link):hover,\nhtml[dir=\"ltr\"] a:not(.logo-link):focus {\n  animation: text-gradient-ltr 6.5s linear infinite;\n}\n\nhtml[dir=\"rtl\"] a:not(.logo-link):hover,\nhtml[dir=\"rtl\"] a:not(.logo-link):focus {\n  animation: text-gradient-rtl 6.5s linear infinite;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.winner {\n  display: block;\n  margin: auto;\n  text-align: center;\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n  transition: 150ms;\n}\n\n.logo-tile--largered {\n  background-color: var(--brand-red);\n  transform: scale(1.2) translateY(-3px);\n  transition: 150ms;\n}\n\n.logo-tile--red:active {\n  transform: scale(0.8);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n  transition: 150ms;\n}\n\n.logo-tile--largegreen {\n  background-color: var(--brand-green);\n  transform: scale(1.2) translateY(-3px);\n  animation-delay: var(--logo-tiles-in-delay);\n  transition: 150ms;\n}\n\n.logo-tile--green:active {\n  transform: scale(0.8);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n  transition: 150ms;\n}\n\n.logo-tile--largeblue {\n  background-color: var(--brand-blue);\n  transform: scale(1.2) translateY(-3px);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n  transition: 150ms;\n}\n\n.logo-tile--blue:active {\n  transform: scale(0.8);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n  transition: 150ms;\n}\n\n.logo-tile--largeyellow {\n  background-color: var(--brand-yellow);\n  transform: scale(1.2) translateY(-3px);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n  transition: 150ms;\n}\n\n.logo-tile--yellow:active {\n  transform: scale(0.8);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\" dir=\"ltr\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta name=\"keywords\" content=\"microsoft, code, designers\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body class=\"js-theme-dark\">\n  <div id=\"app\" class=\"container\">\n    <header>\n      <div class=\"logo-link\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span @click=\"clickColor('red')\" class=\"logo-tile\" v-bind:class=\"logoTitleRed\"></span>\n          <span @click=\"clickColor('green')\" class=\"logo-tile\" v-bind:class=\"logoTitleGreen\"></span>\n          <span @click=\"clickColor('blue')\" class=\"logo-tile\" v-bind:class=\"logoTitleBlue\"></span>\n          <span @click=\"clickColor('yellow')\" class=\"logo-tile\" v-bind:class=\"logoTitleYellow\"></span>\n        </div>\n      </div>\n      <span v-if=\"winner\" class=\"winner\">🎊 Simon says...A winner is you! 🎊</span>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:mmuno@microsoft.com\" title=\"Email address for mmuno@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p>\n        <a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a>\n      </p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n    <script async src=\"scripts/ls.helper.js\"></script>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n  <script src=\"https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.min.js \"></script>\n  <script src=\"simon.js \"></script>\n</body>\n\n</html>"
  },
  {
    "path": "docs/scripts/ls.helper.js",
    "content": "let debug = false;\n\nconst setDebug = function(val) {\n  debug = val;\n  console.log(\"LS DEBUG: \", val);\n};\n\nconst setItem = function(key, item) {\n  if (window.localStorage) {\n    localStorage.setItem(key, item);\n    if (debug) {\n      console.log(\"ls.setItem\", item);\n    }\n  }\n};\n\nconst getItem = function(key) {\n  if (window.localStorage) {\n    const item = localStorage.getItem(key);\n    if (debug) {\n      console.log(\"ls.getItem\", item);\n    }\n    return item;\n  }\n  return undefined;\n};\n\nconst clear = function(key) {\n  if (window.localStorage) {\n    localStorage.clear(key);\n    if (debug) {\n      console.log(\"ls.getItem\", item);\n    }\n  }\n};\n\nconst removeItem = function(key) {\n  if (window.localStorage) {\n    localStorage.removeItem(key);\n    if (debug) {\n      console.log(\"ls.removeItem\", key);\n    }\n  }\n};\n\nwindow.ls = {\n  setItem,\n  getItem,\n  clear,\n  removeItem,\n  setDebug\n};\n"
  },
  {
    "path": "docs/simon.js",
    "content": "new Vue({\n  el: \"#app\",\n  data: {\n    colors: [\"red\", \"green\", \"yellow\", \"blue\"],\n    currentSequence: [],\n    colorStatus: {\n      red: false,\n      green: false,\n      yellow: false,\n      blue: false\n    },\n    colorSymbols: {\n      red: \"❤️\",\n      green: \"💚\",\n      yellow: \"💛\",\n      blue: \"💙\"\n    },\n    userClicks: [],\n    currentScore: 0,\n    difficulty: 1000\n  },\n  created() {\n    this.generateSequence();\n  },\n  watch: {\n    winner: function(isWinner) {\n      if (isWinner) {\n        this.changeTheme();\n      }\n    }\n  },\n  computed: {\n    logoTitleRed: function() {\n      return this.colorStatus.red ? \"logo-tile--largered\" : \"logo-tile--red\";\n    },\n    logoTitleGreen: function() {\n      return this.colorStatus.green\n        ? \"logo-tile--largegreen\"\n        : \"logo-tile--green\";\n    },\n    logoTitleYellow: function() {\n      return this.colorStatus.yellow\n        ? \"logo-tile--largeyellow\"\n        : \"logo-tile--yellow\";\n    },\n    logoTitleBlue: function() {\n      return this.colorStatus.blue ? \"logo-tile--largeblue\" : \"logo-tile--blue\";\n    },\n    winner: function() {\n      return this.currentScore >= 10 ? true : false;\n    }\n  },\n  methods: {\n    generateSequence: function() {\n      this.currentSequence.push(\n        this.colors[this.getRandomInt(this.colors.length)]\n      );\n      if (this.currentScore > 0) {\n        this.play();\n      } else {\n        console.log(\n          `🕵️‍♂️🕵️‍♀️ PSSST! There is a game inside this webpage...\\nClick the ${\n            this.colorSymbols[this.currentSequence[0]]\n          } tile on the Microsoft logo to play!`\n        );\n      }\n    },\n    clickColor: function(color) {\n      this.userClicks.push(color);\n      if (this.checkCorrect()) {\n        this.userClicks = [];\n        if (this.difficulty > 100) {\n          this.difficulty -= 100;\n        }\n        this.currentScore++;\n        console.log(\n          `Simon says...\"correct!\" 🎉 Your score is`,\n          this.currentScore\n        );\n        this.lightUp();\n        this.generateSequence();\n      }\n    },\n    getRandomInt: function(max) {\n      return Math.floor(Math.random() * Math.floor(max));\n    },\n    timer: function(ms) {\n      return new Promise(res => setTimeout(res, ms));\n    },\n    checkCorrect: function() {\n      let matching = true;\n      let sequence =\n        this.userClicks[this.userClicks.length - 1] ===\n        this.currentSequence[this.userClicks.length - 1];\n      if (!sequence) {\n        this.reset();\n      }\n      for (let i = 0; i < this.currentSequence.length; i++) {\n        if (this.userClicks[i] !== this.currentSequence[i]) {\n          matching = false;\n          break;\n        }\n      }\n      return matching;\n    },\n    reset: function() {\n      console.log(`😢 Game Over! Refresh to play again.`);\n      this.currentSequence = [];\n      this.userClicks = [];\n      this.currentScore = 0;\n      this.difficulty = 1000;\n      this.generateSequence();\n    },\n    play: async function() {\n      await this.timer(2000);\n      for (var i = 0; i < this.currentSequence.length; i++) {\n        this.colorStatus[this.currentSequence[i]] = true;\n        await this.timer(this.difficulty);\n        this.colorStatus[this.currentSequence[i]] = false;\n        await this.timer(this.difficulty / 2);\n      }\n    },\n    lightUp: async function() {\n      let t = 150;\n      this.colorStatus.red = true;\n      await this.timer(t);\n      this.colorStatus.red = false;\n      this.colorStatus.green = true;\n      await this.timer(t);\n      this.colorStatus.green = false;\n      this.colorStatus.yellow = true;\n      await this.timer(t);\n      this.colorStatus.yellow = false;\n      this.colorStatus.blue = true;\n      await this.timer(t);\n      this.colorStatus.blue = false;\n      this.colorStatus.red = true;\n      await this.timer(t);\n      this.colorStatus.red = false;\n    },\n    changeTheme: function() {\n      if (theme && theme.changeTo) {\n        theme.changeTo(\"msdos\");\n      }\n    }\n  }\n});\n"
  },
  {
    "path": "docs/theme/msdos/theme.css",
    "content": "@font-face {\n  font-family: \"vga\";\n  src: url(\"moreperfectdosvga.woff2\") format(\"woff2\"),\n    url(\"moreperfectdosvga.woff\") format(\"woff\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n/* MSDOS Font: 'More Perfect DOS VGA' by Adam Moore http://laemeur.sdf.org/fonts/ */\n\nbody.js-theme-msdos {\n  color: #4bffff;\n  background: #0000ab;\n  font-family: \"vga\", \"Courier New\", Courier, monospace;\n  margin: 0;\n}\n\n.js-theme-msdos:before {\n  content: \"\";\n  position: absolute;\n  top: 10px;\n  left: 10px;\n  right: 10px;\n  bottom: 10px;\n  border: 6px double #4bffff;\n}\n\n.js-theme-msdos:after {\n  content: \"C:\\\\\";\n  position: absolute;\n  top: 4px;\n  padding: 0 6px;\n  color: #0000ab;\n  background: #4bffff;\n  line-height: 0.9;\n  font-size: 1.2rem;\n}\n\n.js-theme-msdos .logo-link {\n  animation: none;\n}\n\n.js-theme-msdos .logo {\n  position: relative;\n}\n\n.js-theme-msdos .logo > span {\n  display: none;\n}\n\n.js-theme-msdos .logo:before {\n  content: \"\";\n  position: absolute;\n  top: 66%;\n  left: 50%;\n  transform: translate(-50%, -50%);\n  width: 226px;\n  height: 32px;\n  z-index: 100;\n  background: url(\"blibbet.png\") center/cover no-repeat;\n}\n\n.js-theme-msdos main h1 {\n  border-bottom: 2px solid #4bffff;\n}\n\n.js-theme-msdos a:not(.logo-link) {\n  color: #ffff44;\n  animation: none;\n}\n\n.js-theme-msdos a:not(.logo-link):hover,\n.js-theme-msdos a:not(.logo-link):focus {\n  color: #0e0e0e;\n  -webkit-text-fill-color: #000 !important;\n  padding: 0.2rem;\n  background: #ffff44;\n  position: relative;\n}\n\n.js-theme-msdos a:not(.logo-link):hover:after,\n.js-theme-msdos a:not(.logo-link):focus:after {\n  content: \"\";\n  position: absolute;\n  top: 6px;\n  left: 6px;\n  width: 100%;\n  height: 100%;\n  background: #000;\n  z-index: -1;\n}\n\n.js-theme-msdos .theme {\n  opacity: 1;\n}\n\n.js-theme-msdos .theme__item + .theme__item {\n  margin-left: 0.5rem;\n}\n\n.js-theme-msdos .theme__button:before {\n  content: \"Theme\";\n  padding-right: 5px;\n}\n\n.js-theme-msdos .theme__button {\n  text-indent: 0;\n  width: auto;\n  height: 1rem;\n  font-size: 0.8rem;\n  padding-right: 10px;\n  font-family: \"vga\", \"Courier New\", Courier, monospace;\n  background: #00a8a8;\n  border-radius: 0;\n  color: #0e0e0e;\n}\n\n.js-theme-msdos .theme__button:hover,\n.js-theme-msdos .theme__button:focus {\n  background: #ffff44;\n  color: #0e0e0e;\n}\n"
  },
  {
    "path": "docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  cursor: pointer;\n  display: inline-block;\n  position: relative;\n  margin: auto auto;\n  padding: 0.5rem 0.5rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n  pointer-events: all;\n}\n\n.theme__list,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 0px solid #444;\n  border-radius: 0.6rem;\n  cursor: pointer;\n  z-index: 100;\n}\n\nbutton.theme__button:focus {\n  text-decoration: none;\n  outline: none;\n  box-shadow: none;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: var(--brand-blue);\n}\n\n.js-theme-light a:hover {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-blue) 25%,\n    var(--brand-green) 50%,\n    var(--brand-yellow) 75%,\n    var(--brand-blue) 100%\n  );\n}\n\n.js-theme-dark .theme__button[value=\"dark\"] {\n  z-index: 95;\n  border: 3px solid #828282;\n}\n\n.js-theme-light .theme__button[value=\"light\"] {\n  z-index: 95;\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/theme/theme.js",
    "content": "const USER_THEME = \"ms-tt-user-theme\";\nconst storedTheme = window.ls.getItem(USER_THEME);\n\nvar theme = {\n  activeTheme: \"dark\",\n  load: function(theme, cb) {\n    var id = \"theme-\" + theme;\n    if (!document.getElementById(id)) {\n      var $head = document.getElementsByTagName(\"head\")[0];\n      var $link = document.createElement(\"link\");\n      $link.id = id;\n      $link.rel = \"stylesheet\";\n      $link.type = \"text/css\";\n      $link.href = \"./theme/\" + theme + \"/theme.css\";\n      $head.appendChild($link);\n\n      $link.onload = function() {\n        if (!!cb) cb();\n      };\n      $link.onerror = function() {\n        console.warn(\"loading \" + theme + \" theme failed.\");\n      };\n    }\n  },\n  changeTo: function(theme) {\n    if ([\"light\", \"dark\"].indexOf(theme) === -1) {\n      this.load(theme);\n    } else {\n      window.ls.setItem(USER_THEME, theme);\n    }\n    document.body.classList.remove(\"js-theme-\" + this.activeTheme);\n    this.activeTheme = theme;\n    document.body.classList.add(\"js-theme-\" + this.activeTheme);\n  }\n};\n\ndocument.querySelector(\".theme\").onclick = function(e) {\n  var nextTheme = theme.activeTheme === \"dark\" ? \"light\" : \"dark\";\n  theme.changeTo(nextTheme);\n};\n\nif (storedTheme) {\n  theme.changeTo(storedTheme);\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MDczMTU2/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MDczMTU2/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body class=\"js-theme-dark\">\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p><a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a></p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MDczMTU2/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  cursor: pointer;\n  display: inline-block;\n  position: relative;\n  margin: auto auto;\n  padding: 0.5rem 0.5rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n  pointer-events: all;\n}\n\n.theme__list,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 0px solid #444;\n  border-radius: 0.6rem;\n  cursor: pointer;\n  z-index: 100;\n}\n\nbutton.theme__button:focus {\n  text-decoration: none;\n  outline: none;\n  box-shadow: none;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-dark .theme__button[value=\"dark\"] {\n  z-index: 95;\n  border: 3px solid #828282;\n}\n.js-theme-light .theme__button[value=\"light\"] {\n  z-index: 95;\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MDczMTU2/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar activeTheme = \"dark\";\n\ndocument.querySelector(\".theme\").onclick = function(e) {\n  $body.classList.remove(\"js-theme-\" + activeTheme);\n  activeTheme = activeTheme === \"dark\" ? \"light\" : \"dark\";\n  $body.classList.add(\"js-theme-\" + activeTheme);\n};\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MDk0NjM1/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  line-height: var(--title-line-height);\n  font-weight: bolder;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MDk0NjM1/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body>\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p><a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a></p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MDk0NjM1/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MDk0NjM1/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", \"disabled\");\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", \"disabled\");\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MTA4Nzg1/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 1.3rem;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n@keyframes text-gradient-ltr {\n  to {\n    background-position: -600% center;\n  }\n}\n\n@keyframes text-gradient-rtl {\n  to {\n    background-position: 600% center;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n}\n\na:hover,\na:focus {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-yellow) 25%,\n    var(--brand-green) 50%,\n    var(--brand-blue) 75%,\n    var(--brand-yellow) 100%\n  );\n  background-size: 600% auto;\n  -webkit-text-fill-color: transparent;\n  -webkit-background-clip: text;\n  background-clip: text;\n}\n\nhtml[dir=\"ltr\"] a:not(.logo-link):hover,\nhtml[dir=\"ltr\"] a:not(.logo-link):focus {\n  animation: text-gradient-ltr 6.5s linear infinite;\n}\n\nhtml[dir=\"rtl\"] a:not(.logo-link):hover,\nhtml[dir=\"rtl\"] a:not(.logo-link):focus {\n  animation: text-gradient-rtl 6.5s linear infinite;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MTA4Nzg1/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\" dir=\"ltr\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body class=\"js-theme-dark\">\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p>\n        <a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a>\n      </p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MTA4Nzg1/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  cursor: pointer;\n  display: inline-block;\n  position: relative;\n  margin: auto auto;\n  padding: 0.5rem 0.5rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n  pointer-events: all;\n}\n\n.theme__list,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 0px solid #444;\n  border-radius: 0.6rem;\n  cursor: pointer;\n  z-index: 100;\n}\n\nbutton.theme__button:focus {\n  text-decoration: none;\n  outline: none;\n  box-shadow: none;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: var(--blue);\n}\n\n.js-theme-light a:hover {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-blue) 25%,\n    var(--brand-green) 50%,\n    var(--brand-yellow) 75%,\n    var(--brand-blue) 100%\n  );\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-dark .theme__button[value=\"dark\"] {\n  z-index: 95;\n  border: 3px solid #828282;\n}\n.js-theme-light .theme__button[value=\"light\"] {\n  z-index: 95;\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MTA4Nzg1/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar activeTheme = \"dark\";\n\ndocument.querySelector(\".theme\").onclick = function(e) {\n  $body.classList.remove(\"js-theme-\" + activeTheme);\n  activeTheme = activeTheme === \"dark\" ? \"light\" : \"dark\";\n  $body.classList.add(\"js-theme-\" + activeTheme);\n};\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MTAzMjM2/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MTAzMjM2/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body>\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p><a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a></p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MTAzMjM2/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0MTAzMjM2/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", \"disabled\");\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", \"disabled\");\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0NDc0MTI0/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 1.3rem;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n@keyframes text-gradient-ltr {\n  to {\n    background-position: -600% center;\n  }\n}\n\n@keyframes text-gradient-rtl {\n  to {\n    background-position: 600% center;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n}\n\na:hover,\na:focus {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-yellow) 25%,\n    var(--brand-green) 50%,\n    var(--brand-blue) 75%,\n    var(--brand-yellow) 100%\n  );\n  background-size: 600% auto;\n  -webkit-text-fill-color: transparent;\n  -webkit-background-clip: text;\n  background-clip: text;\n}\n\nhtml[dir=\"ltr\"] a:not(.logo-link):hover,\nhtml[dir=\"ltr\"] a:not(.logo-link):focus {\n  animation: text-gradient-ltr 6.5s linear infinite;\n}\n\nhtml[dir=\"rtl\"] a:not(.logo-link):hover,\nhtml[dir=\"rtl\"] a:not(.logo-link):focus {\n  animation: text-gradient-rtl 6.5s linear infinite;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0NDc0MTI0/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\" dir=\"ltr\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta name=\"keywords\" content=\"microsoft, code, designers\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body class=\"js-theme-dark\">\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p>\n        <a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a>\n      </p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0NDc0MTI0/docs/theme/msdostheme.css",
    "content": "@font-face {\n  font-family: \"vga\";\n  src: url(\"moreperfectdosvga.woff2\") format(\"woff2\"),\n    url(\"moreperfectdosvga.woff\") format(\"woff\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n/* MSDOS Font: 'More Perfect DOS VGA' by Adam Moore http://laemeur.sdf.org/fonts/ */\n\nbody.js-theme-msdos {\n  color: #4bffff;\n  background: #0000ab;\n  font-family: \"vga\", \"Courier New\", Courier, monospace;\n  margin: 0;\n}\n\n.js-theme-msdos:before {\n  content: \"\";\n  position: absolute;\n  top: 10px;\n  left: 10px;\n  right: 10px;\n  bottom: 10px;\n  border: 6px double #4bffff;\n}\n\n.js-theme-msdos:after {\n  content: \"C:\\\\\";\n  position: absolute;\n  top: 4px;\n  padding: 0 6px;\n  color: #0000ab;\n  background: #4bffff;\n  line-height: 0.9;\n  font-size: 1.2rem;\n}\n\n.js-theme-msdos .logo-link {\n  animation: none;\n}\n\n.js-theme-msdos .logo {\n  position: relative;\n}\n\n.js-theme-msdos .logo > span {\n  display: none;\n}\n\n.js-theme-msdos .logo:before {\n  content: \"\";\n  position: absolute;\n  top: 66%;\n  left: 50%;\n  transform: translate(-50%, -50%);\n  width: 226px;\n  height: 32px;\n  z-index: 100;\n  background: url(\"blibbet.png\") center/cover no-repeat;\n}\n\n.js-theme-msdos main h1 {\n  border-bottom: 2px solid #4bffff;\n}\n\n.js-theme-msdos a:not(.logo-link) {\n  color: #ffff44;\n  animation: none;\n}\n\n.js-theme-msdos a:not(.logo-link):hover,\n.js-theme-msdos a:not(.logo-link):focus {\n  color: #0e0e0e;\n  -webkit-text-fill-color: #000 !important;\n  padding: 0.2rem;\n  background: #ffff44;\n  position: relative;\n}\n\n.js-theme-msdos a:not(.logo-link):hover:after,\n.js-theme-msdos a:not(.logo-link):focus:after {\n  content: \"\";\n  position: absolute;\n  top: 6px;\n  left: 6px;\n  width: 100%;\n  height: 100%;\n  background: #000;\n  z-index: -1;\n}\n\n.js-theme-msdos .theme {\n  opacity: 1;\n}\n\n.js-theme-msdos .theme__item + .theme__item {\n  margin-left: 0.5rem;\n}\n\n.js-theme-msdos .theme__button:before {\n  content: \"Theme\";\n  padding-right: 5px;\n}\n\n.js-theme-msdos .theme__button {\n  text-indent: 0;\n  width: auto;\n  height: 1rem;\n  font-size: 0.8rem;\n  padding-right: 10px;\n  font-family: \"vga\", \"Courier New\", Courier, monospace;\n  background: #00a8a8;\n  border-radius: 0;\n  color: #0e0e0e;\n}\n\n.js-theme-msdos .theme__button:hover,\n.js-theme-msdos .theme__button:focus {\n  background: #ffff44;\n  color: #0e0e0e;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0NDc0MTI0/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  cursor: pointer;\n  display: inline-block;\n  position: relative;\n  margin: auto auto;\n  padding: 0.5rem 0.5rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n  pointer-events: all;\n}\n\n.theme__list,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 0px solid #444;\n  border-radius: 0.6rem;\n  cursor: pointer;\n  z-index: 100;\n}\n\nbutton.theme__button:focus {\n  text-decoration: none;\n  outline: none;\n  box-shadow: none;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: var(--brand-blue);\n}\n\n.js-theme-light a:hover {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-blue) 25%,\n    var(--brand-green) 50%,\n    var(--brand-yellow) 75%,\n    var(--brand-blue) 100%\n  );\n}\n\n.js-theme-dark .theme__button[value=\"dark\"] {\n  z-index: 95;\n  border: 3px solid #828282;\n}\n\n.js-theme-light .theme__button[value=\"light\"] {\n  z-index: 95;\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0NDc0MTI0/docs/theme/theme.js",
    "content": "var theme = {\n  activeTheme: \"dark\",\n  load: function(theme, cb) {\n    var id = \"theme-\" + theme;\n    if (!document.getElementById(id)) {\n      var $head = document.getElementsByTagName(\"head\")[0];\n      var $link = document.createElement(\"link\");\n      $link.id = id;\n      $link.rel = \"stylesheet\";\n      $link.type = \"text/css\";\n      $link.href = \"/theme/\" + theme + \"/theme.css\";\n      $head.appendChild($link);\n\n      $link.onload = function() {\n        if (!!cb) cb();\n      };\n      $link.onerror = function() {\n        console.warn(\"loading \" + theme + \" theme failed.\");\n      };\n    }\n  },\n  changeTo: function(theme) {\n    if ([\"light\", \"dark\"].indexOf(theme) === -1) this.load(theme);\n\n    document.body.classList.remove(\"js-theme-\" + this.activeTheme);\n    this.activeTheme = theme;\n    document.body.classList.add(\"js-theme-\" + this.activeTheme);\n  }\n};\n\ndocument.querySelector(\".theme\").onclick = function(e) {\n  var nextTheme = theme.activeTheme === \"dark\" ? \"light\" : \"dark\";\n  theme.changeTo(nextTheme);\n};\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0NDk0NTU5/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 1.3rem;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n@keyframes text-gradient-ltr {\n  to {\n    background-position: -600% center;\n  }\n}\n\n@keyframes text-gradient-rtl {\n  to {\n    background-position: 600% center;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n}\n\na:hover,\na:focus {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-yellow) 25%,\n    var(--brand-green) 50%,\n    var(--brand-blue) 75%,\n    var(--brand-yellow) 100%\n  );\n  background-size: 600% auto;\n  -webkit-text-fill-color: transparent;\n  -webkit-background-clip: text;\n  background-clip: text;\n}\n\nhtml[dir=\"ltr\"] a:not(.logo-link):hover,\nhtml[dir=\"ltr\"] a:not(.logo-link):focus {\n  animation: text-gradient-ltr 6.5s linear infinite;\n}\n\nhtml[dir=\"rtl\"] a:not(.logo-link):hover,\nhtml[dir=\"rtl\"] a:not(.logo-link):focus {\n  animation: text-gradient-rtl 6.5s linear infinite;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0NDk0NTU5/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\" dir=\"ltr\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta name=\"keywords\" content=\"microsoft, code, designers\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body class=\"js-theme-dark\">\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p>\n        <a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a>\n      </p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0NDk0NTU5/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  cursor: pointer;\n  display: inline-block;\n  position: relative;\n  margin: auto auto;\n  padding: 0.5rem 0.5rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n  pointer-events: all;\n}\n\n.theme__list,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 0px solid #444;\n  border-radius: 0.6rem;\n  cursor: pointer;\n  z-index: 100;\n}\n\nbutton.theme__button:focus {\n  text-decoration: none;\n  outline: none;\n  box-shadow: none;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: var(--blue);\n}\n\n.js-theme-light a:hover {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-blue) 25%,\n    var(--brand-green) 50%,\n    var(--brand-yellow) 75%,\n    var(--brand-blue) 100%\n  );\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-dark .theme__button[value=\"dark\"] {\n  z-index: 95;\n  border: 3px solid #828282;\n}\n.js-theme-light .theme__button[value=\"light\"] {\n  z-index: 95;\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA0NDk0NTU5/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar activeTheme = \"dark\";\n\ndocument.querySelector(\".theme\").onclick = function(e) {\n  $body.classList.remove(\"js-theme-\" + activeTheme);\n  activeTheme = activeTheme === \"dark\" ? \"light\" : \"dark\";\n  $body.classList.add(\"js-theme-\" + activeTheme);\n};\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA1OTA3ODAz/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 1.3rem;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n@keyframes text-gradient-ltr {\n  to {\n    background-position: -600% center;\n  }\n}\n\n@keyframes text-gradient-rtl {\n  to {\n    background-position: 600% center;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n}\n\na:hover,\na:focus {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-yellow) 25%,\n    var(--brand-green) 50%,\n    var(--brand-blue) 75%,\n    var(--brand-yellow) 100%\n  );\n  background-size: 600% auto;\n  -webkit-text-fill-color: transparent;\n  -webkit-background-clip: text;\n  background-clip: text;\n}\n\nhtml[dir=\"ltr\"] a:not(.logo-link):hover,\nhtml[dir=\"ltr\"] a:not(.logo-link):focus {\n  animation: text-gradient-ltr 6.5s linear infinite;\n}\n\nhtml[dir=\"rtl\"] a:not(.logo-link):hover,\nhtml[dir=\"rtl\"] a:not(.logo-link):focus {\n  animation: text-gradient-rtl 6.5s linear infinite;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA1OTA3ODAz/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\" dir=\"ltr\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta name=\"keywords\" content=\"microsoft, code, designers\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body class=\"js-theme-dark\">\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p>\n        <a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a>\n      </p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA1OTA3ODAz/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  cursor: pointer;\n  display: inline-block;\n  position: relative;\n  margin: auto auto;\n  padding: 0.5rem 0.5rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n  pointer-events: all;\n}\n\n.theme__list,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 0px solid #444;\n  border-radius: 0.6rem;\n  cursor: pointer;\n  z-index: 100;\n}\n\nbutton.theme__button:focus {\n  text-decoration: none;\n  outline: none;\n  box-shadow: none;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: var(--brand-blue);\n}\n\n.js-theme-light a:hover {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-blue) 25%,\n    var(--brand-green) 50%,\n    var(--brand-yellow) 75%,\n    var(--brand-blue) 100%\n  );\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-dark .theme__button[value=\"dark\"] {\n  z-index: 95;\n  border: 3px solid #828282;\n}\n.js-theme-light .theme__button[value=\"light\"] {\n  z-index: 95;\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjA1OTA3ODAz/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar activeTheme = \"dark\";\n\ndocument.querySelector(\".theme\").onclick = function(e) {\n  $body.classList.remove(\"js-theme-\" + activeTheme);\n  activeTheme = activeTheme === \"dark\" ? \"light\" : \"dark\";\n  $body.classList.add(\"js-theme-\" + activeTheme);\n};\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNDU2ODA2/docs/index.html",
    "content": "<!DOCTYPE html>\n<html>\n\n<head>\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n</head>\n\n<style>\n    body {\n        background-color: #080808;\n        color: #BBB;\n        font-family: sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\n    }\n\n    .container {\n        max-width: 600px;\n        min-height: calc(100vh - 80px);\n        margin: 0 auto;\n    }\n\n    .container img {\n        margin: 40px auto;\n        width: 100%;\n    }\n\n    .container p {\n        font-size: 19px;\n        line-height: 1.3em;\n        -webkit-font-smoothing: antialiased;\n        -moz-osx-font-smoothing: grayscale;\n        margin-bottom: 1.1em;\n    }\n\n    .container p a {\n        text-decoration: none;\n        color: pink;\n    }\n\n    .container p a:hover {\n        color: lightblue;\n    }\n\n    footer {\n        color: #999;\n        text-align: center;\n        height: 40px;\n    }\n\n    footer a {\n        color: #DDD;\n        text-decoration: none;\n    }\n    footer a:hover {\n        color: lightblue;\n    }\n\n    @media only screen and (max-width: 600px) {\n        .container p {\n            font-size: 18px;\n        }\n        footer {\n            text-align: unset;\n            padding: 1em 0 2em;\n        }\n        footer span {\n            display: block;\n        }\n    }\n</style>\n\n<body>\n    <div class=\"container\">\n        <a href=\"https://microsoft.com\">\n            <img src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n        </a>\n        <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services on\n            the planet.\n        </p>\n\n        <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.</p>\n\n        <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n            the future of software development.</p>\n\n        <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve\n            more.\n        </p>\n\n        <p>Interested? Send a PR with any improvement to\n            <a href=\"https://github.com/Microsoft/join-dev-design\">microsoft/join-dev-design</a> or\n            <a href=\"mailto:dasiege@microsoft.com\">email us</a>.</p>\n    </div>\n    <footer>\n        <span>\n            Designed in\n            <a href=\"http://figma.com\">Figma</a>.</span>\n        <span>Built in\n            <a href=\"https://code.visualstudio.com\">Code</a>.</span>\n        <span>Open source on\n            <a href=\"https://github.com/Microsoft/join-dev-design\">GitHub</a>.</span>\n    </footer>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNDU4Mzc4/docs/index.html",
    "content": "<!DOCTYPE html>\n<html>\n\n<head>\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n</head>\n\n<style>\n    body {\n        background-color: black;\n        color: #DDD;\n        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\n    }\n\n    .container {\n        max-width: 600px;\n        min-height: calc(100vh - 80px);\n        margin: 0 auto;\n    }\n\n    .container img {\n        margin: 40px auto;\n        width: 100%;\n    }\n\n    .container p {\n        font-weight: 300;\n        font-size: 22px;\n    }\n\n    .container p a {\n        text-decoration: none;\n        color: pink;\n    }\n\n    .container p a:hover {\n        color: salmon;\n    }\n\n    footer {\n        color: #999;\n        text-align: center;\n        height: 40px;\n    }\n\n    footer a {\n        color: #DDD;\n        text-decoration: none;\n    }\n\n    @media only screen and (max-width: 600px) {\n        .container p {\n            font-size: 18px;\n        }\n        footer {\n            text-align: unset;\n            padding: 1em 0 2em;\n        }\n        footer span {\n            display: block;\n        }\n    }\n</style>\n\n<body>\n    <div class=\"container\">\n        <a href=\"https://microsoft.com\">\n            <img src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"100\" height=\"100\" />\n        </a>\n        <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services on\n            the planet.\n        </p>\n\n        <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.</p>\n\n        <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n            the future of software development.</p>\n\n        <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve\n            more.\n        </p>\n\n        <p>Interested? Send a PR with any improvement to\n            <a href=\"https://github.com/Microsoft/join-dev-design\">microsoft/join-dev-design</a> or\n            <a href=\"mailto:dasiege@microsoft.com\">email us</a>.</p>\n    </div>\n    <footer>\n        <span>\n            Designed in\n            <a href=\"http://figma.com\">Figma</a>.</span>\n        <span>Built in\n            <a href=\"https://code.visualstudio.com\">Code</a>.</span>\n        <span>Open source on\n            <a href=\"https://github.com/Microsoft/join-dev-design\">GitHub</a>.</span>\n    </footer>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNTk0MzQw/docs/css/style.css",
    "content": "body {\n  background-color: #080808;\n  color: #bbb;\n  font-family: sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto,\n    Oxygen, Ubuntu, Cantarell, \"Open Sans\", \"Helvetica Neue\", sans-serif;\n}\n\n.container {\n  max-width: 600px;\n  min-height: calc(100vh - 80px);\n  margin: 0 auto;\n}\n\n.container img {\n  margin: 40px auto;\n  width: 100%;\n}\n\n.container p {\n  font-size: 19px;\n  line-height: 1.3em;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  margin-bottom: 1.1em;\n}\n\n.container p a {\n  text-decoration: none;\n  color: pink;\n}\n\n.container p a:hover {\n  color: lightblue;\n}\n\nfooter {\n  color: #999;\n  text-align: center;\n  height: 40px;\n}\n\nfooter a {\n  color: #ddd;\n  text-decoration: none;\n}\nfooter a:hover {\n  color: lightblue;\n}\n\n@media only screen and (max-width: 600px) {\n  .container p {\n    font-size: 18px;\n  }\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n  }\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNTk0MzQw/docs/index.html",
    "content": "<!DOCTYPE html>\n<html>\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <a href=\"https://microsoft.com\">\n            <img src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n        </a>\n        <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services on\n            the planet.\n        </p>\n\n        <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.</p>\n\n        <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n            the future of software development.</p>\n\n        <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve\n            more.\n        </p>\n\n        <p>Interested? Send a PR with any improvement to\n            <a href=\"https://github.com/Microsoft/join-dev-design\">microsoft/join-dev-design</a> or\n            <a href=\"mailto:dasiege@microsoft.com\">email us</a>.</p>\n    </div>\n    <footer>\n        <span>\n            Designed in\n            <a href=\"http://figma.com\">Figma</a>.</span>\n        <span>Built in\n            <a href=\"https://code.visualstudio.com\">Code</a>.</span>\n        <span>Open source on\n            <a href=\"https://github.com/Microsoft/join-dev-design\">GitHub</a>.</span>\n    </footer>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjE5Njgz/docs/css/style.css",
    "content": "body {\n  background-color: #080808;\n  color: #bbb;\n  font-family: sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto,\n    Oxygen, Ubuntu, Cantarell, \"Open Sans\", \"Helvetica Neue\", sans-serif;\n}\n\n.container {\n  max-width: 600px;\n  min-height: calc(100vh - 80px);\n  margin: 0 auto;\n}\n\n.container img {\n  margin: 40px auto;\n  width: 100%;\n}\n\n.container p {\n  font-size: 19px;\n  line-height: 1.3em;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  margin-bottom: 1.1em;\n}\n\n.container p a {\n  text-decoration: none;\n  color: pink;\n}\n\n.container p a:hover {\n  color: lightblue;\n}\n\nfooter {\n  color: #999;\n  text-align: center;\n  height: 40px;\n}\n\nfooter a {\n  color: #ddd;\n  text-decoration: none;\n}\nfooter a:hover {\n  color: lightblue;\n}\n\n@media only screen and (max-width: 600px) {\n  .container p {\n    font-size: 18px;\n  }\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n  }\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjE5Njgz/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a href=\"https://microsoft.com\">\n                <img src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services on\n                the planet.\n            </p>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.</p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve\n                more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <a href=\"https://github.com/Microsoft/join-dev-design\">microsoft/join-dev-design</a> or\n                <a href=\"mailto:dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer>\n        <span>\n            Designed in\n            <a href=\"http://figma.com\">Figma</a>.</span>\n        <span>Built in\n            <a href=\"https://code.visualstudio.com\">Code</a>.</span>\n        <span>Open source on\n            <a href=\"https://github.com/Microsoft/join-dev-design\">GitHub</a>.</span>\n    </footer>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjMwODc0/docs/css/style.css",
    "content": "body {\n  background-color: #080808;\n  color: #bbb;\n  font-family: sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto,\n    Oxygen, Ubuntu, Cantarell, \"Open Sans\", \"Helvetica Neue\", sans-serif;\n}\n\n.container {\n  max-width: 600px;\n  min-height: calc(100vh - 80px);\n  margin: 0 auto;\n}\n\n.container img {\n  margin: 40px auto;\n  width: 100%;\n}\n\n.container p {\n  font-size: 19px;\n  line-height: 1.3em;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  margin-bottom: 1.1em;\n}\n\n.container p a {\n  text-decoration: none;\n  color: pink;\n}\n\n.container p a:hover {\n  color: lightblue;\n}\n\nfooter {\n  color: #999;\n  text-align: center;\n  height: 40px;\n}\n\nfooter a {\n  color: #ddd;\n  text-decoration: none;\n}\nfooter a:hover {\n  color: lightblue;\n}\n\n@media only screen and (max-width: 600px) {\n  .container p {\n    font-size: 18px;\n  }\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n  }\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjMwODc0/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a href=\"https://microsoft.com\">\n                <img src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services on\n                the planet.\n            </p>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.</p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve\n                more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <a href=\"https://github.com/Microsoft/join-dev-design\">microsoft/join-dev-design</a> or\n                <a href=\"mailto:dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer>\n        <span>\n            Designed in\n            <a href=\"https://figma.com\">Figma</a>.</span>\n        <span>Built in\n            <a href=\"https://code.visualstudio.com\">Code</a>.</span>\n        <span>Open source on\n            <a href=\"https://github.com/Microsoft/join-dev-design\">GitHub</a>.</span>\n    </footer>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjMyMTA4/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --move-in-offset: 1rem;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-color: #080808;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: 100vh;\n  margin: 0;\n  color: #bbb;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  opacity: 0;\n  transform: translateY(var(--move-in-offset));\n  animation: 1500ms 500ms forwards move-in;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: white;\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2.5rem auto;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    padding-left: 1rem;\n    padding-right: 1rem;\n  }\n  .footer {\n    text-align: unset;\n    padding: 1rem;\n  }\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjMyMTA4/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\">\n                <img class=\"logo-image\" src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <a href=\"https://github.com/Microsoft/join-dev-design\">microsoft/join-dev-design</a> or\n                <a href=\"mailto:dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <a href=\"https://code.visualstudio.com\">Code</a>.</span>\n        <span class=\"footer-piece\">Open source on\n            <a href=\"https://github.com/Microsoft/join-dev-design\">GitHub</a>.</span>\n    </footer>\n</body>\n\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjQwMTUx/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --move-in-offset: 1rem;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-color: #080808;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: 100vh;\n  margin: 0;\n  color: #bbb;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  opacity: 0;\n  transform: translateY(var(--move-in-offset));\n  animation: 1500ms 500ms forwards move-in;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: white;\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2.5rem auto;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    padding-left: 1rem;\n    padding-right: 1rem;\n  }\n  .footer {\n    text-align: unset;\n    padding: 1rem;\n  }\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjQwMTUx/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\">\n                <img class=\"logo-image\" src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <a href=\"https://github.com/Microsoft/join-dev-design\">microsoft/join-dev-design</a> or\n                <a href=\"mailto:dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <a href=\"https://code.visualstudio.com\">Code</a>.</span>\n        <span class=\"footer-piece\">Open source on\n            <a href=\"https://github.com/Microsoft/join-dev-design\">GitHub</a>.</span>\n    </footer>\n</body>\n\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjU1MzUz/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --move-in-offset: 1rem;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-color: #080808;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: 100vh;\n  margin: 0;\n  color: #bbb;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: white;\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n\n  opacity: 0;\n  transform: translateY(var(--move-in-offset));\n  animation: 1500ms 500ms forwards move-in;\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2.5rem auto;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #2b3137;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjU1MzUz/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n                <img class=\"logo-image\" src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open sourced on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjY5NzUy/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --move-in-offset: 20px;\n  --move-in-animation: 0.9s both move-in;\n  --link-color: rgba(244, 99, 97, 1);\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-color: rgba(18, 18, 18, 1);\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: 100vh;\n  margin: 0;\n  color: #bbb;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader p {\n  animation: var(--move-in-animation);\n  animation-delay: 200ms;\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n}\n\nmain p:nth-child(1) {\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p:nth-child(2) {\n  animation: var(--move-in-animation);\n  animation-delay: 300ms;\n}\n\nmain p:nth-child(3) {\n  animation: var(--move-in-animation);\n  animation-delay: 350ms;\n}\n\nmain p:nth-child(4) {\n  animation: var(--move-in-animation);\n  animation-delay: 400ms;\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);\n}\n\n.logo-link:hover {\n  transform: scale(1.1);\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #2b3137;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjY5NzUy/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n                <img class=\"logo-image\" src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open sourced on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjYwMjc3/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --move-in-offset: 1rem;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-color: #080808;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: 100vh;\n  margin: 0;\n  color: #bbb;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: white;\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n\n  opacity: 0;\n  transform: translateY(var(--move-in-offset));\n  animation: 1500ms 500ms forwards move-in;\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2.5rem auto;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #2b3137;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    padding-left: 1rem;\n    padding-right: 1rem;\n  }\n  .footer {\n    text-align: unset;\n    padding: 1rem;\n  }\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjYwMjc3/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n                <img class=\"logo-image\" src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open source on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjYxMTY1/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --move-in-offset: 1rem;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-color: #080808;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: 100vh;\n  margin: 0;\n  color: #bbb;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: white;\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n\n  opacity: 0;\n  transform: translateY(var(--move-in-offset));\n  animation: 1500ms 500ms forwards move-in;\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2.5rem auto;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    padding-left: 1rem;\n    padding-right: 1rem;\n  }\n  .footer {\n    text-align: unset;\n    padding: 1rem;\n  }\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjYxMTY1/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n                <img class=\"logo-image\" src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open source on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjg4Njky/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --move-in-offset: 1rem;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-color: #080808;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: 100vh;\n  margin: 0;\n  color: #bbb;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: white;\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n\n  opacity: 0;\n  transform: translateY(var(--move-in-offset));\n  animation: 1500ms 500ms forwards move-in;\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2.5rem auto;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #2b3137;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    padding-left: 1rem;\n    padding-right: 1rem;\n  }\n  .footer {\n    text-align: unset;\n    padding: 1rem;\n  }\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjg4Njky/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n                <img class=\"logo-image\" src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open source on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjgxMTcy/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --move-in-offset: 1rem;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-color: #080808;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: 100vh;\n  margin: 0;\n  color: #bbb;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  opacity: 0;\n  transform: translateY(var(--move-in-offset));\n  animation: 1500ms 500ms forwards move-in;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: white;\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2.5rem auto;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    padding-left: 1rem;\n    padding-right: 1rem;\n  }\n  .footer {\n    text-align: unset;\n    padding: 1rem;\n  }\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjgxMTcy/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n                <img class=\"logo-image\" src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open source on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjgxMjE3/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --move-in-offset: 1rem;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-color: #080808;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: 100vh;\n  margin: 0;\n  color: #bbb;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: white;\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n\n  opacity: 0;\n  transform: translateY(var(--move-in-offset));\n  animation: 1500ms 500ms forwards move-in;\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2.5rem auto;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #2b3137;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    padding-left: 1rem;\n    padding-right: 1rem;\n  }\n  .footer {\n    text-align: unset;\n    padding: 1rem;\n  }\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNjgxMjE3/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n                <img class=\"logo-image\" src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open source on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzAyNDE3/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --move-in-offset: 20px;\n  --move-in-animation: 0.9s both move-in;\n  --link-color: rgba(244, 99, 97, 1);\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-color: rgba(18, 18, 18, 1);\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: 100vh;\n  margin: 0;\n  color: #bbb;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader p {\n  animation: var(--move-in-animation);\n  animation-delay: 200ms;\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p:nth-child(1) {\n  animation: var(--move-in-animation);\n  animation-delay: 300ms;\n}\n\nmain p:nth-child(2) {\n  animation: var(--move-in-animation);\n  animation-delay: 350ms;\n}\n\nmain p:nth-child(3) {\n  animation: var(--move-in-animation);\n  animation-delay: 400ms;\n}\n\nmain p:nth-child(4) {\n  animation: var(--move-in-animation);\n  animation-delay: 450ms;\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);\n}\n\n.logo-link:hover {\n  transform: scale(1.1);\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #2b3137;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzAyNDE3/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n                <img class=\"logo-image\" src=\"msft-square.svg\" alt=\"Microsoft logo\" width=\"80\" height=\"80\" />\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open sourced on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzE2NDY5/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: rgba(244, 99, 97, 1);\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #f45326),\n    color-stop(0.67, #80bc07)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #f45326 33%,\n    #80bc07 67%\n  );\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: 99vh;\n  margin: 5px;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #2b3137;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzE2NDY5/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open sourced on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzExMTI4/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: rgba(244, 99, 97, 1);\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-color: rgba(18, 18, 18, 1);\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: 100vh;\n  margin: 0;\n  color: #bbb;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #2b3137;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzExMTI4/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open sourced on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzM2NDkx/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: rgba(244, 99, 97, 1);\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #f45326),\n    color-stop(0.67, #80bc07)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #f45326 33%,\n    #80bc07 67%\n  );\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #2b3137;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzM2NDkx/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open sourced on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzM3Mjk4/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: rgba(244, 99, 97, 1);\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #f45326),\n    color-stop(0.67, #80bc07)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #f45326 33%,\n    #80bc07 67%\n  );\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzM3Mjk4/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open sourced on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzM3MzA0/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: rgba(244, 99, 97, 1);\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #f45326),\n    color-stop(0.67, #80bc07)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #f45326 33%,\n    #80bc07 67%\n  );\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzM3MzA0/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is an collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open sourced on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"Github repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzQ0OTM1/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: rgba(244, 99, 97, 1);\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #f45326),\n    color-stop(0.67, #80bc07)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #f45326 33%,\n    #80bc07 67%\n  );\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzQ0OTM1/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is a collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open sourced on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzQ5NzE1/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  flex: 1;\n  margin: 0 auto;\n  max-width: 32rem;\n  width: 32rem;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzQ5NzE1/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n            <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>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <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\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nvar consoleStyles = [\n  'color: white;',\n  'background-color: #080808;',\n  'background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg);',\n  'background-size: 70%;',\n  'background-position: 50% 25%;',\n  'background-repeat: no-repeat;',\n  'padding: 3em;',\n  'text-align: center;',\n  'font-size: 1.25em;'\n].join('')\n\nconsole.log(\n  '%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design',\n  consoleStyles\n)\n\nfetch(\n  'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n)\n  .then(function(response) {\n    if (response.status !== 200) {\n      console.log(\n        'Looks like there was a problem. Status Code: ' + response.status\n      )\n      return\n    }\n    response.json().then(function(data) {\n      var contributors = document.getElementById('contributors')\n      contributors.innerText = data.length\n    })\n  })\n  .catch(function(err) {\n    console.log('Fetch Error :-S', err)\n  })\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzU3MjE0/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: rgba(244, 99, 97, 1);\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #f45326),\n    color-stop(0.67, #80bc07)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #f45326 33%,\n    #80bc07 67%\n  );\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzU3MjE0/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is a collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open sourced on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzY3MTA4/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzY3MTA4/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"footer\">\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <span id=\"contributors\">10</span> contributors on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\n    console.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n\n    fetch(\"https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors\")\n        .then(function (response) {\n            if (response.status !== 200) {\n                console.log(\n                    \"Looks like there was a problem. Status Code: \" + response.status\n                );\n                return;\n            }\n            response.json().then(function (data) {\n                var contributors = document.getElementById(\"contributors\");\n                contributors.innerText = data.length;\n            });\n        })\n        .catch(function (err) {\n            console.log(\"Fetch Error :-S\", err);\n        });\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzY3MTI4/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzY3MTI4/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n            <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>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <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\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nvar consoleStyles = [\n  'color: white;',\n  'background-color: #080808;',\n  'background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg);',\n  'background-size: 70%;',\n  'background-position: 50% 25%;',\n  'background-repeat: no-repeat;',\n  'padding: 3em;',\n  'text-align: center;',\n  'font-size: 1.25em;'\n].join('')\n\nconsole.log(\n  '%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design',\n  consoleStyles\n)\n\nfetch(\n  'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n)\n  .then(function(response) {\n    if (response.status !== 200) {\n      console.log(\n        'Looks like there was a problem. Status Code: ' + response.status\n      )\n      return\n    }\n    response.json().then(function(data) {\n      var contributors = document.getElementById('contributors')\n      contributors.innerText = data.length\n    })\n  })\n  .catch(function(err) {\n    console.log('Fetch Error :-S', err)\n  })\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzYxNjM5/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzYxNjM5/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"footer\">\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <span id=\"contributors\">10</span> contributors on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\n    console.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n\n    fetch(\"https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors\")\n        .then(function (response) {\n            if (response.status !== 200) {\n                console.log(\n                    \"Looks like there was a problem. Status Code: \" + response.status\n                );\n                return;\n            }\n            response.json().then(function (data) {\n                var contributors = document.getElementById(\"contributors\");\n                contributors.innerText = data.length;\n            });\n        })\n        .catch(function (err) {\n            console.log(\"Fetch Error :-S\", err);\n        });\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzYzMDAw/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: rgba(244, 99, 97, 1);\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #f45326),\n    color-stop(0.67, #80bc07)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #f45326 33%,\n    #80bc07 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"figma\"]:hover {\n  color: #8420ff;\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzYzMDAw/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <p>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </p>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"footer\">\n        <span class=\"footer-piece\">\n            Designed in\n            <a href=\"https://figma.com\" title=\"Figma is a collaborative interface design tool\">Figma</a>.</span>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">Open sourced on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nconsole.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzYzNDU3/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  flex: 1;\n  margin: 0 auto;\n  max-width: 32rem;\n  width: 32rem;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzYzNDU3/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n    <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n    <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n    <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders. \">\n    <meta property=\"og:type\" content=\"website\">\n    <meta property=\"og:image\" content=\"https://microsoft.github.io/join-dev-design/microsoft-og-image.png\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"stylesheet\" href=\"theme/theme.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in <a href=\"https://www.microsoft.com/en-us/diversity/\" title=\"Microsoft's diversity and inclusion efforts\">diversity</a>, <a href=\"https://open.microsoft.com/\" title=\"Articles and updates on Microsoft's open source contributions\">openness</a>, and building <a href=\"https://www.microsoft.com/design/\" title=\"Microsoft's design tools and Fluent Design System\">delightful tools</a> that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n        <div class=\"theme\">\n            <ul class=\"theme__list\">\n                <li class=\"theme__item\">\n                    <button class=\"theme__button js-theme-button\" value=\"dark\">Dark</button>\n                </li>\n                <li class=\"theme__item\">\n                    <button class=\"theme__button js-theme-button\" value=\"light\">Light</button>\n                </li>\n            </ul>\n        </div>\n    </div>\n    <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n            <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>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <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\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script src=\"/theme/theme.js\"></script>\n<script type=\"text/javascript\">\nvar consoleStyles = [\n  'color: white;',\n  'background-color: #080808;',\n  'background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg);',\n  'background-size: 70%;',\n  'background-position: 50% 25%;',\n  'background-repeat: no-repeat;',\n  'padding: 3em;',\n  'text-align: center;',\n  'font-size: 1.25em;'\n].join('')\n\nconsole.log(\n  '%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design',\n  consoleStyles\n)\n\nfetch(\n  'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n)\n  .then(function(response) {\n    if (response.status !== 200) {\n      console.log(\n        'Looks like there was a problem. Status Code: ' + response.status\n      )\n      return\n    }\n    response.json().then(function(data) {\n      var contributors = document.getElementById('contributors')\n      contributors.innerText = data.length\n    })\n  })\n  .catch(function(err) {\n    console.log('Fetch Error :-S', err)\n  })\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzYzNDU3/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  padding: 1rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 900;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: 1.5s;\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzYzNDU3/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzgxMDc2/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --medium-grey: #777;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, var(--brand-blue)),\n    color-stop(0.67, var(--brand-yellow))\n  );\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-blue) 33%, var(--brand-yellow) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-blue), var(--brand-yellow))\"\n  );\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  line-height: var(--title-line-height);\n  font-weight: bolder;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid var(--medium-grey);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzgxMDc2/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body>\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzgxMDc2/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyNzgxMDc2/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", \"disabled\");\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", \"disabled\");\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyODAwMDY2/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyODAwMDY2/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"footer\">\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <span id=\"contributors\">10</span> contributors on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nvar consoleStyles = [\n  'color: white;',\n  'background-color: #080808;',\n  'background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg);',\n  'background-size: 70%;',\n  'background-position: 50% 25%;',\n  'background-repeat: no-repeat;',\n  'padding: 3em;',\n  'text-align: center;',\n  'font-size: 1.25em;'\n].join('')\n\nconsole.log(\n  '%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design',\n  consoleStyles\n)\n\nfetch(\n  'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n)\n  .then(function(response) {\n    if (response.status !== 200) {\n      console.log(\n        'Looks like there was a problem. Status Code: ' + response.status\n      )\n      return\n    }\n    response.json().then(function(data) {\n      var contributors = document.getElementById('contributors')\n      contributors.innerText = data.length\n    })\n  })\n  .catch(function(err) {\n    console.log('Fetch Error :-S', err)\n  })\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyODAzNzE5/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyODAzNzE5/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"footer\">\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <span id=\"contributors\">10</span> contributors on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nvar consoleStyles = [\n  'color: white;',\n  'background-color: #080808;',\n  'background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg);',\n  'background-size: 70%;',\n  'background-position: 50% 25%;',\n  'background-repeat: no-repeat;',\n  'padding: 3em;',\n  'text-align: center;',\n  'font-size: 1.25em;'\n].join('')\n\nconsole.log(\n  '%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design',\n  consoleStyles\n)\n\nfetch(\n  'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n)\n  .then(function(response) {\n    if (response.status !== 200) {\n      console.log(\n        'Looks like there was a problem. Status Code: ' + response.status\n      )\n      return\n    }\n    response.json().then(function(data) {\n      var contributors = document.getElementById('contributors')\n      contributors.innerText = data.length\n    })\n  })\n  .catch(function(err) {\n    console.log('Fetch Error :-S', err)\n  })\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyODIyMDk1/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyODIyMDk1/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"footer\">\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <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\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nvar consoleStyles = [\n  'color: white;',\n  'background-color: #080808;',\n  'background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg);',\n  'background-size: 70%;',\n  'background-position: 50% 25%;',\n  'background-repeat: no-repeat;',\n  'padding: 3em;',\n  'text-align: center;',\n  'font-size: 1.25em;'\n].join('')\n\nconsole.log(\n  '%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design',\n  consoleStyles\n)\n\nfetch(\n  'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n)\n  .then(function(response) {\n    if (response.status !== 200) {\n      console.log(\n        'Looks like there was a problem. Status Code: ' + response.status\n      )\n      return\n    }\n    response.json().then(function(data) {\n      var contributors = document.getElementById('contributors')\n      contributors.innerText = data.length\n    })\n  })\n  .catch(function(err) {\n    console.log('Fetch Error :-S', err)\n  })\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyODMxMTEz/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyODMxMTEz/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"footer\">\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <span id=\"contributors\">10</span> contributors on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\n    console.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n\n    fetch(\"https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors\")\n        .then(function (response) {\n            if (response.status !== 200) {\n                console.log(\n                    \"Looks like there was a problem. Status Code: \" + response.status\n                );\n                return;\n            }\n            response.json().then(function (data) {\n                var contributors = document.getElementById(\"contributors\");\n                contributors.innerText = data.length;\n            });\n        })\n        .catch(function (err) {\n            console.log(\"Fetch Error :-S\", err);\n        });\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyODkzMzc3/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  footer span {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyODkzMzc3/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"footer\">\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <span id=\"contributors\">10</span> contributors on\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\n    console.log(\"%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design\", \"color: white; background-color: #080808; background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg); background-size: 70%; background-position: 50% 25%; background-repeat: no-repeat; padding: 3em; text-align: center;font-size: 1.25em;\");\n\n    fetch(\"https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors\")\n        .then(function (response) {\n            if (response.status !== 200) {\n                console.log(\n                    \"Looks like there was a problem. Status Code: \" + response.status\n                );\n                return;\n            }\n            response.json().then(function (data) {\n                var contributors = document.getElementById(\"contributors\");\n                contributors.innerText = data.length;\n            });\n        })\n        .catch(function (err) {\n            console.log(\"Fetch Error :-S\", err);\n        });\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTI1OTA0/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  flex: 1;\n  margin: 0 auto;\n  max-width: 32rem;\n  width: 32rem;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTI1OTA0/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"stylesheet\" href=\"theme/theme.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in <a href=\"https://www.microsoft.com/en-us/diversity/\" title=\"Microsoft's diversity and inclusion efforts\">diversity</a>, <a href=\"https://open.microsoft.com/\" title=\"Articles and updates on Microsoft's open source contributions\">openness</a>, and building <a href=\"https://www.microsoft.com/design/\" title=\"Microsoft's design tools and Fluent Design System\">delightful tools</a> that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n        <div class=\"theme\">\n            <ul class=\"theme__list\">\n                <li class=\"theme__item\">\n                    <button class=\"theme__button js-theme-button\" value=\"dark\">Dark</button>\n                </li>\n                <li class=\"theme__item\">\n                    <button class=\"theme__button js-theme-button\" value=\"light\">Light</button>\n                </li>\n            </ul>\n        </div>\n    </div>\n    <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n            <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>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <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\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script src=\"/theme/theme.js\"></script>\n<script type=\"text/javascript\">\nvar consoleStyles = [\n  'color: white;',\n  'background-color: #080808;',\n  'background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg);',\n  'background-size: 70%;',\n  'background-position: 50% 25%;',\n  'background-repeat: no-repeat;',\n  'padding: 3em;',\n  'text-align: center;',\n  'font-size: 1.25em;'\n].join('')\n\nconsole.log(\n  '%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design',\n  consoleStyles\n)\n\nfetch(\n  'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n)\n  .then(function(response) {\n    if (response.status !== 200) {\n      console.log(\n        'Looks like there was a problem. Status Code: ' + response.status\n      )\n      return\n    }\n    response.json().then(function(data) {\n      var contributors = document.getElementById('contributors')\n      contributors.innerText = data.length\n    })\n  })\n  .catch(function(err) {\n    console.log('Fetch Error :-S', err)\n  })\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTI1OTA0/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  padding: 1rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 900;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: 1.5s;\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTI1OTA0/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTI5OTU1/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 32rem;\n  margin: 0 auto;\n  flex: 1;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTI5OTU1/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in diversity, openness, and building delightful tools that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"contentinfo\">\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <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\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nvar consoleStyles = [\n  'color: white;',\n  'background-color: #080808;',\n  'background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg);',\n  'background-size: 70%;',\n  'background-position: 50% 25%;',\n  'background-repeat: no-repeat;',\n  'padding: 3em;',\n  'text-align: center;',\n  'font-size: 1.25em;'\n].join('')\n\nconsole.log(\n  '%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design',\n  consoleStyles\n)\n\nfetch(\n  'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n)\n  .then(function(response) {\n    if (response.status !== 200) {\n      console.log(\n        'Looks like there was a problem. Status Code: ' + response.status\n      )\n      return\n    }\n    response.json().then(function(data) {\n      var contributors = document.getElementById('contributors')\n      contributors.innerText = data.length\n    })\n  })\n  .catch(function(err) {\n    console.log('Fetch Error :-S', err)\n  })\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTM2MTYw/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  flex: 1;\n  margin: 0 auto;\n  max-width: 32rem;\n  width: 32rem;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 20vw);\n    margin: 0 auto;\n  }\n\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTM2MTYw/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in <a href=\"https://www.microsoft.com/en-us/diversity/\" title=\"Microsoft's diversity and inclusion efforts\">diversity</a>, <a href=\"https://open.microsoft.com/\" title=\"Articles and updates on Microsoft's open source contributions\">openness</a>, and building <a href=\"https://www.microsoft.com/design/\" title=\"Microsoft's design tools and Fluent Design System\">delightful tools</a> that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n    </div>\n    <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n            <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>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <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\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script type=\"text/javascript\">\nvar consoleStyles = [\n  'color: white;',\n  'background-color: #080808;',\n  'background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg);',\n  'background-size: 70%;',\n  'background-position: 50% 25%;',\n  'background-repeat: no-repeat;',\n  'padding: 3em;',\n  'text-align: center;',\n  'font-size: 1.25em;'\n].join('')\n\nconsole.log(\n  '%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design',\n  consoleStyles\n)\n\nfetch(\n  'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n)\n  .then(function(response) {\n    if (response.status !== 200) {\n      console.log(\n        'Looks like there was a problem. Status Code: ' + response.status\n      )\n      return\n    }\n    response.json().then(function(data) {\n      var contributors = document.getElementById('contributors')\n      contributors.innerText = data.length\n    })\n  })\n  .catch(function(err) {\n    console.log('Fetch Error :-S', err)\n  })\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTQxNTcx/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  flex: 1;\n  margin: 0 auto;\n  max-width: 32rem;\n  width: 32rem;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 27px;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  font-size: 80%;\n  text-align: center;\n  padding: 1rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n\n  .container p {\n    font-size: 18px;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1em 0 2em;\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTQxNTcx/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <title>Join Microsoft Developer Design</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"css/style.css\">\n    <link rel=\"stylesheet\" href=\"theme/theme.css\">\n    <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n    <div class=\"container\">\n        <header>\n            <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n              <figure class=\"logo-css\">\n                <span class=\"logo-tile logo-tile--red\"></span>\n                <span class=\"logo-tile logo-tile--green\"></span>\n                <span class=\"logo-tile logo-tile--blue\"></span>\n                <span class=\"logo-tile logo-tile--yellow\"></span>\n              </figure>\n            </a>\n            <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services\n                on the planet.\n            </h1>\n            <hr>\n        </header>\n        <main>\n            <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n            </p>\n\n            <p>We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n                the future of software development.</p>\n\n            <p>We believe in <a href=\"https://www.microsoft.com/en-us/diversity/\" title=\"Microsoft's diversity and inclusion efforts\">diversity</a>, <a href=\"https://open.microsoft.com/\" title=\"Articles and updates on Microsoft's open source contributions\">openness</a>, and building <a href=\"https://www.microsoft.com/design/\" title=\"Microsoft's design tools and Fluent Design System\">delightful tools</a> that empower every person and organization to\n                achieve more.\n            </p>\n\n            <p>Interested? Send a PR with any improvement to\n                <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\n                <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n        </main>\n        <div class=\"theme\">\n            <ul class=\"theme__list\">\n                <li class=\"theme__item\">\n                    <button class=\"theme__button js-theme-button\" value=\"dark\">Dark</button>\n                </li>\n                <li class=\"theme__item\">\n                    <button class=\"theme__button js-theme-button\" value=\"light\">Light</button>\n                </li>\n            </ul>\n        </div>\n    </div>\n    <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n            <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>\n        <span class=\"footer-piece\">Built in\n            <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>\n        <span class=\"footer-piece\">\n            Created by\n            <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\n            <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n    </footer>\n</body>\n<script src=\"/theme/theme.js\"></script>\n<script type=\"text/javascript\">\nvar consoleStyles = [\n  'color: white;',\n  'background-color: #080808;',\n  'background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg);',\n  'background-size: 70%;',\n  'background-position: 50% 25%;',\n  'background-repeat: no-repeat;',\n  'padding: 3em;',\n  'text-align: center;',\n  'font-size: 1.25em;'\n].join('')\n\nconsole.log(\n  '%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design',\n  consoleStyles\n)\n\nfetch(\n  'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n)\n  .then(function(response) {\n    if (response.status !== 200) {\n      console.log(\n        'Looks like there was a problem. Status Code: ' + response.status\n      )\n      return\n    }\n    response.json().then(function(data) {\n      var contributors = document.getElementById('contributors')\n      contributors.innerText = data.length\n    })\n  })\n  .catch(function(err) {\n    console.log('Fetch Error :-S', err)\n  })\n</script>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTQxNTcx/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  padding: 1rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 900;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: 1.5s;\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTQxNTcx/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTU0Njkw/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translate3d(0, var(--move-in-offset), 0);\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 16px;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1.25rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  font-size: 16px;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 40rem;\n  margin: 0 auto;\n  flex: 1;\n  margin: 0 auto;\n  max-width: 40rem;\n  width: 40rem;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\np {\n  font-size: 1.125rem;\n}\n\n@media only screen and (min-width: 40em) {\n  p {\n    font-size: 1.25rem;\n  }\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.688rem;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 5rem;\n  height: 5rem;\n  margin: 2.5rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  text-align: center;\n  padding: 1.25rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1.25rem 0 2.5rem;\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTU0Njkw/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders. \">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"https://microsoft.github.io/join-dev-design/microsoft-og-image.png\">\n  <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <figure class=\"logo-css\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </figure>\n      </a>\n      <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services on the planet.\n      </h1>\n      <hr>\n    </header>\n    <main>\n      <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n\n      <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>\n\n      <p>We believe in\n        <a href=\"https://www.microsoft.com/en-us/diversity/\" title=\"Microsoft's diversity and inclusion efforts\">diversity</a>,\n        <a href=\"https://open.microsoft.com/\" title=\"Articles and updates on Microsoft's open source contributions\">openness</a>, and building\n        <a href=\"https://www.microsoft.com/design/\" title=\"Microsoft's design tools and Fluent Design System\">delightful tools</a> that empower every person and organization to achieve more.\n      </p>\n\n      <p>Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n    </main>\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\">Light</button>\n        </li>\n      </ul>\n    </div>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n      <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>\n    <span class=\"footer-piece\">Built in\n      <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>\n    <span class=\"footer-piece\">\n      Created by\n      <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\n      <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n  </footer>\n</body>\n<script src=\"theme/theme.js\"></script>\n<script type=\"text/javascript\">\n  var consoleStyles = [\n    'color: white;',\n    'background-color: #080808;',\n    'background-image: url(https://microsoft.github.io/join-dev-design/msft-square.svg);',\n    'background-size: 70%;',\n    'background-position: 50% 25%;',\n    'background-repeat: no-repeat;',\n    'padding: 3em;',\n    'text-align: center;',\n    'font-size: 1.25em;'\n  ].join('')\n\n  console.log(\n    '%c\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design',\n    consoleStyles\n  )\n\n  fetch(\n    'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n  )\n    .then(function (response) {\n      if (response.status !== 200) {\n        console.log(\n          'Looks like there was a problem. Status Code: ' + response.status\n        )\n        return\n      }\n      response.json().then(function (data) {\n        var contributors = document.getElementById('contributors')\n        contributors.innerText = data.length\n      })\n    })\n    .catch(function (err) {\n      console.log('Fetch Error :-S', err)\n    })\n</script>\n\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTU0Njkw/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  padding: 1rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 900;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: 1.5s;\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTU0Njkw/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTY2NTYw/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translate3d(0, var(--move-in-offset), 0);\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 16px;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1.25rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  font-size: 16px;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 40rem;\n  margin: 0 auto;\n  flex: 1;\n  margin: 0 auto;\n  max-width: 40rem;\n  width: 40rem;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\np {\n  font-size: 1.125rem;\n}\n\n@media only screen and (min-width: 40em) {\n  p {\n    font-size: 1.25rem;\n  }\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.688rem;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 5rem;\n  height: 5rem;\n  margin: 2.5rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  text-align: center;\n  padding: 1.25rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1.25rem 0 2.5rem;\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTY2NTYw/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders. \">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"https://microsoft.github.io/join-dev-design/microsoft-og-image.png\">\n  <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <figure class=\"logo-css\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </figure>\n      </a>\n      <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services on the planet.\n      </h1>\n      <hr>\n    </header>\n    <main>\n      <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n\n      <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>\n\n      <p>We believe in\n        <a href=\"https://www.microsoft.com/en-us/diversity/\" title=\"Microsoft's diversity and inclusion efforts\">diversity</a>,\n        <a href=\"https://open.microsoft.com/\" title=\"Articles and updates on Microsoft's open source contributions\">openness</a>, and building\n        <a href=\"https://www.microsoft.com/design/\" title=\"Microsoft's design tools and Fluent Design System\">delightful tools</a> that empower every person and organization to achieve more.\n      </p>\n\n      <p>Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n    </main>\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\">Light</button>\n        </li>\n      </ul>\n    </div>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n      <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>\n    <span class=\"footer-piece\">Built in\n      <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>\n    <span class=\"footer-piece\">\n      Created by\n      <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\n      <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n  </footer>\n  <script src=\"theme/theme.js\"></script>\n  <script type=\"text/javascript\">\n    function logLogo(sz) {\n      var sp = 10;\n      var styles = [\n        \"font-size: 1px\",\n        \"display: inline-block\",\n        \"padding-left: \" + (sz * 2 + sp) + \"px\",\n        \"padding-top: \" + (sz * 2 + sp) + \"px\",\n        \"background-image: linear-gradient(90deg, #F0521F 0px, #F0521F <p1>px, transparent <p1>px, transparent <p2>px, #7FCC2C <p2>px, #7FCC2C <p3>px, transparent <p3>px), linear-gradient(90deg, #00ADF0 0px, #00ADF0 <p4>px, transparent <p4>px, transparent <p5>px, #FCBA12 <p5>px, #FCBA12 <p6>px, transparent <p6>px)\"\n          .replace(/<p1>/g, '' + (sz))\n          .replace(/<p2>/g, '' + (sz + sp))\n          .replace(/<p3>/g, '' + (sz * 2 + sp))\n          .replace(/<p4>/g, '' + (sz))\n          .replace(/<p5>/g, '' + (sz + sp))\n          .replace(/<p6>/g, '' + (sz * 2 + sp)),\n        \"background-repeat: no-repeat\",\n        \"background-size: \" + (sz * 2 + sp) + \"px \" + sz + \"px\",\n        \"background-position: 0 0, 0 \" + (sz + sp) + \"px\"\n      ]\n\n      console.log('%c ', styles.join(';'));\n      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')\n    }\n\n    logLogo(100);\n\n    fetch(\n      'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n    )\n      .then(function (response) {\n        if (response.status !== 200) {\n          console.log(\n            'Looks like there was a problem. Status Code: ' + response.status\n          )\n          return\n        }\n        response.json().then(function (data) {\n          var contributors = document.getElementById('contributors')\n          contributors.innerText = data.length\n        })\n      })\n      .catch(function (err) {\n        console.log('Fetch Error :-S', err)\n      })\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTY2NTYw/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  padding: 1rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 900;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: 1.5s;\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTY2NTYw/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTc2Njc5/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translate3d(0, var(--move-in-offset), 0);\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 16px;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\n\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1.25rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  font-size: 16px;\n}\n\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\n\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\n\na:hover {\n  color: var(--blue);\n}\n\n.container {\n  max-width: 40rem;\n  margin: 0 auto;\n  flex: 1;\n  margin: 0 auto;\n  max-width: 40rem;\n  width: 40rem;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\n\np {\n  font-size: 1.125rem;\n}\n\n@media only screen and (min-width: 40em) {\n  p {\n    font-size: 1.25rem;\n  }\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.688rem;\n  font-weight: bolder;\n}\n\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\n\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n.logo-link {\n  display: block;\n  width: 5rem;\n  height: 5rem;\n  margin: 2.5rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n.footer {\n  text-align: center;\n  padding: 1.25rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\n\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n\n  footer {\n    text-align: unset;\n    padding: 1.25rem 0 2.5rem;\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTc2Njc5/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders. \">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"https://microsoft.github.io/join-dev-design/microsoft-og-image.png\">\n  <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <figure class=\"logo-css\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </figure>\n      </a>\n      <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services on the planet.\n      </h1>\n      <hr>\n    </header>\n    <main>\n      <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n\n      <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>\n\n      <p>We believe in\n        <a href=\"https://www.microsoft.com/en-us/diversity/\" title=\"Microsoft's diversity and inclusion efforts\">diversity</a>,\n        <a href=\"https://open.microsoft.com/\" title=\"Articles and updates on Microsoft's open source contributions\">openness</a>, and building\n        <a href=\"https://www.microsoft.com/design/\" title=\"Microsoft's design tools and Fluent Design System\">delightful tools</a> that empower every person and organization to achieve more.\n      </p>\n\n      <p>Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n    </main>\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\">Light</button>\n        </li>\n      </ul>\n    </div>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n      <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>\n    <span class=\"footer-piece\">Built in\n      <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>\n    <span class=\"footer-piece\">\n      Created by\n      <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\n      <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n  </footer>\n  <script src=\"theme/theme.js\"></script>\n  <script type=\"text/javascript\">\n    function logLogo(sz) {\n      var sp = 10;\n      var styles = [\n        \"font-size: 1px\",\n        \"display: inline-block\",\n        \"padding-left: \" + (sz * 2 + sp) + \"px\",\n        \"padding-top: \" + (sz * 2 + sp) + \"px\",\n        \"background-image: linear-gradient(90deg, #F0521F 0px, #F0521F <p1>px, transparent <p1>px, transparent <p2>px, #7FCC2C <p2>px, #7FCC2C <p3>px, transparent <p3>px), linear-gradient(90deg, #00ADF0 0px, #00ADF0 <p4>px, transparent <p4>px, transparent <p5>px, #FCBA12 <p5>px, #FCBA12 <p6>px, transparent <p6>px)\"\n          .replace(/<p1>/g, '' + (sz))\n          .replace(/<p2>/g, '' + (sz + sp))\n          .replace(/<p3>/g, '' + (sz * 2 + sp))\n          .replace(/<p4>/g, '' + (sz))\n          .replace(/<p5>/g, '' + (sz + sp))\n          .replace(/<p6>/g, '' + (sz * 2 + sp)),\n        \"background-repeat: no-repeat\",\n        \"background-size: \" + (sz * 2 + sp) + \"px \" + sz + \"px\",\n        \"background-position: 0 0, 0 \" + (sz + sp) + \"px\"\n      ]\n\n      console.log('%c ', styles.join(';'));\n      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')\n    }\n\n    logLogo(100);\n\n    fetch(\n      'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n    )\n      .then(function (response) {\n        if (response.status !== 200) {\n          console.log(\n            'Looks like there was a problem. Status Code: ' + response.status\n          )\n          return\n        }\n        response.json().then(function (data) {\n          var contributors = document.getElementById('contributors')\n          contributors.innerText = data.length\n        })\n      })\n      .catch(function (err) {\n        console.log('Fetch Error :-S', err)\n      })\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTc2Njc5/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  padding: 1rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 900;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: 1.5s;\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTc2Njc5/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTg1MjM4/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translate3d(0, var(--move-in-offset), 0);\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 16px;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1.25rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  font-size: 16px;\n}\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\na:hover {\n  color: var(--blue);\n}\n.container {\n  max-width: 40rem;\n  margin: 0 auto;\n  flex: 1;\n  margin: 0 auto;\n  max-width: 40rem;\n  width: 40rem;\n}\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\np {\n  font-size: 1.125rem;\n}\n@media only screen and (min-width: 40em) {\n  p {\n    font-size: 1.25rem;\n  }\n}\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.688rem;\n  font-weight: bolder;\n}\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n.logo-link {\n  display: block;\n  width: 5rem;\n  height: 5rem;\n  margin: 2.5rem auto;\n}\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n.footer {\n  text-align: center;\n  padding: 1.25rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n  footer {\n    text-align: unset;\n    padding: 1.25rem 0 2.5rem;\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTg1MjM4/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders. \">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"https://microsoft.github.io/join-dev-design/microsoft-og-image.png\">\n  <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <figure class=\"logo-css\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </figure>\n      </a>\n      <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services on the planet.\n      </h1>\n      <hr>\n    </header>\n    <main>\n      <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n\n      <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>\n\n      <p>We believe in\n        <a href=\"https://www.microsoft.com/en-us/diversity/\" title=\"Microsoft's diversity and inclusion efforts\">diversity</a>,\n        <a href=\"https://open.microsoft.com/\" title=\"Articles and updates on Microsoft's open source contributions\">openness</a>, and building\n        <a href=\"https://www.microsoft.com/design/\" title=\"Microsoft's design tools and Fluent Design System\">delightful tools</a> that empower every person and organization to achieve more.\n      </p>\n\n      <p>Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n    </main>\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\">Light</button>\n        </li>\n      </ul>\n    </div>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n      <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>\n    <span class=\"footer-piece\">Built in\n      <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>\n    <span class=\"footer-piece\">\n      Created by\n      <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\n      <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n  </footer>\n  <script src=\"theme/theme.js\"></script>\n  <script type=\"text/javascript\">\n    function logLogo(sz) {\n      var sp = 10;\n      var styles = [\n        \"font-size: 1px\",\n        \"display: inline-block\",\n        \"padding-left: \" + (sz * 2 + sp) + \"px\",\n        \"padding-top: \" + (sz * 2 + sp) + \"px\",\n        \"background-image: linear-gradient(90deg, #F0521F 0px, #F0521F <p1>px, transparent <p1>px, transparent <p2>px, #7FCC2C <p2>px, #7FCC2C <p3>px, transparent <p3>px), linear-gradient(90deg, #00ADF0 0px, #00ADF0 <p4>px, transparent <p4>px, transparent <p5>px, #FCBA12 <p5>px, #FCBA12 <p6>px, transparent <p6>px)\"\n          .replace(/<p1>/g, '' + (sz))\n          .replace(/<p2>/g, '' + (sz + sp))\n          .replace(/<p3>/g, '' + (sz * 2 + sp))\n          .replace(/<p4>/g, '' + (sz))\n          .replace(/<p5>/g, '' + (sz + sp))\n          .replace(/<p6>/g, '' + (sz * 2 + sp)),\n        \"background-repeat: no-repeat\",\n        \"background-size: \" + (sz * 2 + sp) + \"px \" + sz + \"px\",\n        \"background-position: 0 0, 0 \" + (sz + sp) + \"px\"\n      ]\n\n      console.log('%c ', styles.join(';'));\n      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')\n    }\n\n    logLogo(100);\n\n    fetch(\n      'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n    )\n      .then(function (response) {\n        if (response.status !== 200) {\n          console.log(\n            'Looks like there was a problem. Status Code: ' + response.status\n          )\n          return\n        }\n        response.json().then(function (data) {\n          var contributors = document.getElementById('contributors')\n          contributors.innerText = data.length\n        })\n      })\n      .catch(function (err) {\n        console.log('Fetch Error :-S', err)\n      })\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTg1MjM4/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  padding: 1rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 900;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: 1.5s;\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTg1MjM4/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTk1MzQ4/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translate3d(0, var(--move-in-offset), 0);\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 16px;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1.25rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  font-size: 16px;\n}\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\na:hover {\n  color: var(--blue);\n}\n.container {\n  max-width: 40rem;\n  margin: 0 auto;\n  flex: 1;\n  margin: 0 auto;\n  max-width: 40rem;\n  width: 40rem;\n}\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\np {\n  font-size: 1.125rem;\n}\n@media only screen and (min-width: 40em) {\n  p {\n    font-size: 1.25rem;\n  }\n}\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.688rem;\n  font-weight: bolder;\n}\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n.logo-link {\n  display: block;\n  width: 5rem;\n  height: 5rem;\n  margin: 2.5rem auto;\n}\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n.footer {\n  text-align: center;\n  padding: 1.25rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n  footer {\n    text-align: unset;\n    padding: 1.25rem 0 2.5rem;\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTk1MzQ4/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders. \">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"https://microsoft.github.io/join-dev-design/microsoft-og-image.png\">\n  <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <figure class=\"logo-css\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </figure>\n      </a>\n      <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services on the planet.\n      </h1>\n      <hr>\n    </header>\n    <main>\n      <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n\n      <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>\n\n      <p>We believe in\n        <a href=\"https://www.microsoft.com/en-us/diversity/\" title=\"Microsoft's diversity and inclusion efforts\">diversity</a>,\n        <a href=\"https://open.microsoft.com/\" title=\"Articles and updates on Microsoft's open source contributions\">openness</a>, and building\n        <a href=\"https://www.microsoft.com/design/\" title=\"Microsoft's design tools and Fluent Design System\">delightful tools</a> that empower every person and organization to achieve more.\n      </p>\n\n      <p>Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n    </main>\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\">Light</button>\n        </li>\n      </ul>\n    </div>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n      <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>\n    <span class=\"footer-piece\">Built in\n      <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>\n    <span class=\"footer-piece\">\n      Created by\n      <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\n      <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n  </footer>\n  <script src=\"theme/theme.js\"></script>\n  <script type=\"text/javascript\">\n    function logLogo(sz) {\n      var sp = 10;\n      var styles = [\n        \"font-size: 1px\",\n        \"display: inline-block\",\n        \"padding-left: \" + (sz * 2 + sp) + \"px\",\n        \"padding-top: \" + (sz * 2 + sp) + \"px\",\n        \"background-image: linear-gradient(90deg, #F0521F 0px, #F0521F <p1>px, transparent <p1>px, transparent <p2>px, #7FCC2C <p2>px, #7FCC2C <p3>px, transparent <p3>px), linear-gradient(90deg, #00ADF0 0px, #00ADF0 <p4>px, transparent <p4>px, transparent <p5>px, #FCBA12 <p5>px, #FCBA12 <p6>px, transparent <p6>px)\"\n          .replace(/<p1>/g, '' + (sz))\n          .replace(/<p2>/g, '' + (sz + sp))\n          .replace(/<p3>/g, '' + (sz * 2 + sp))\n          .replace(/<p4>/g, '' + (sz))\n          .replace(/<p5>/g, '' + (sz + sp))\n          .replace(/<p6>/g, '' + (sz * 2 + sp)),\n        \"background-repeat: no-repeat\",\n        \"background-size: \" + (sz * 2 + sp) + \"px \" + sz + \"px\",\n        \"background-position: 0 0, 0 \" + (sz + sp) + \"px\"\n      ]\n\n      console.log('%c ', styles.join(';'));\n      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')\n    }\n\n    logLogo(100);\n\n    fetch(\n      'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n    )\n      .then(function (response) {\n        if (response.status !== 200) {\n          console.log(\n            'Looks like there was a problem. Status Code: ' + response.status\n          )\n          return\n        }\n        response.json().then(function (data) {\n          var contributors = document.getElementById('contributors')\n          contributors.innerText = data.length\n        })\n      })\n      .catch(function (err) {\n        console.log('Fetch Error :-S', err)\n      })\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTk1MzQ4/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  padding: 1rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 900;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: 1.5s;\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTk1MzQ4/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTk1NzUw/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translate3d(0, var(--move-in-offset), 0);\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 16px;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1.25rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  font-size: 16px;\n}\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\na:hover {\n  color: var(--blue);\n}\n.container {\n  max-width: 40rem;\n  margin: 0 auto;\n  flex: 1;\n  margin: 0 auto;\n  max-width: 40rem;\n  width: 40rem;\n}\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\np {\n  font-size: 1.125rem;\n}\n@media only screen and (min-width: 40em) {\n  p {\n    font-size: 1.25rem;\n  }\n}\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.688rem;\n  font-weight: bolder;\n}\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n.logo-link {\n  display: block;\n  width: 5rem;\n  height: 5rem;\n  margin: 2.5rem auto;\n}\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n.footer {\n  text-align: center;\n  padding: 1.25rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n  footer {\n    text-align: unset;\n    padding: 1.25rem 0 2.5rem;\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTk1NzUw/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders. \">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"https://microsoft.github.io/join-dev-design/microsoft-og-image.png\">\n  <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <figure class=\"logo-css\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </figure>\n      </a>\n      <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services on the planet.\n      </h1>\n      <hr>\n    </header>\n    <main>\n      <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n\n      <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>\n\n      <p>We believe in\n        <a href=\"https://www.microsoft.com/en-us/diversity/\" title=\"Microsoft's diversity and inclusion efforts\">diversity</a>,\n        <a href=\"https://open.microsoft.com/\" title=\"Articles and updates on Microsoft's open source contributions\">openness</a>, and building\n        <a href=\"https://www.microsoft.com/design/\" title=\"Microsoft's design tools and Fluent Design System\">delightful tools</a> that empower every person and organization to achieve more.\n      </p>\n\n      <p>Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n    </main>\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\">Light</button>\n        </li>\n      </ul>\n    </div>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n      <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>\n    <span class=\"footer-piece\">Built in\n      <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>\n    <span class=\"footer-piece\">\n      Created by\n      <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\n      <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n  </footer>\n  <script src=\"theme/theme.js\"></script>\n  <script type=\"text/javascript\">\n    function logLogo(sz) {\n      var sp = 10;\n      var styles = [\n        \"font-size: 1px\",\n        \"display: inline-block\",\n        \"padding-left: \" + (sz * 2 + sp) + \"px\",\n        \"padding-top: \" + (sz * 2 + sp) + \"px\",\n        \"background-image: linear-gradient(90deg, #F0521F 0px, #F0521F <p1>px, transparent <p1>px, transparent <p2>px, #7FCC2C <p2>px, #7FCC2C <p3>px, transparent <p3>px), linear-gradient(90deg, #00ADF0 0px, #00ADF0 <p4>px, transparent <p4>px, transparent <p5>px, #FCBA12 <p5>px, #FCBA12 <p6>px, transparent <p6>px)\"\n          .replace(/<p1>/g, '' + (sz))\n          .replace(/<p2>/g, '' + (sz + sp))\n          .replace(/<p3>/g, '' + (sz * 2 + sp))\n          .replace(/<p4>/g, '' + (sz))\n          .replace(/<p5>/g, '' + (sz + sp))\n          .replace(/<p6>/g, '' + (sz * 2 + sp)),\n        \"background-repeat: no-repeat\",\n        \"background-size: \" + (sz * 2 + sp) + \"px \" + sz + \"px\",\n        \"background-position: 0 0, 0 \" + (sz + sp) + \"px\"\n      ]\n\n      console.log('%c ', styles.join(';'));\n      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')\n    }\n\n    logLogo(100);\n\n    fetch(\n      'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n    )\n      .then(function (response) {\n        if (response.status !== 200) {\n          console.log(\n            'Looks like there was a problem. Status Code: ' + response.status\n          )\n          return\n        }\n        response.json().then(function (data) {\n          var contributors = document.getElementById('contributors')\n          contributors.innerText = data.length\n        })\n      })\n      .catch(function (err) {\n        console.log('Fetch Error :-S', err)\n      })\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTk1NzUw/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  padding: 1rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 900;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: 1.5s;\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTk1NzUw/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTkyNzEz/docs/css/style.css",
    "content": ":root {\n  --blue: #05a6f0;\n  --link-color: #ffba08;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translate3d(0, var(--move-in-offset), 0);\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\nhtml {\n  position: relative;\n  font-size: 16px;\n  font-family: Inconsolata, Consolas, monospace;\n  line-height: 1.25;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #05a6f0),\n    color-stop(0.67, #ffba08)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #05a6f0 33%,\n    #ffba08 67%\n  );\n}\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background-image: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, #ffbb00),\n    color-stop(0.67, #00a1f1)\n  );\n  background-image: -moz-linear-gradient(\n    center bottom,\n    #ffbb00 33%,\n    #00a1f1 67%\n  );\n  animation: 4s both root-gradient linear infinite;\n}\nbody {\n  display: flex;\n  flex-flow: column nowrap;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 1.25rem;\n  color: #bbb;\n  background-color: rgba(18, 18, 18, 1);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  font-size: 16px;\n}\n::-moz-selection {\n  color: white;\n  background-color: var(--blue);\n}\n::selection {\n  color: white;\n  background-color: var(--blue);\n}\na {\n  color: var(--link-color);\n  text-decoration: none;\n  transition: 150ms color;\n}\na:hover {\n  color: var(--blue);\n}\n.container {\n  max-width: 40rem;\n  margin: 0 auto;\n  flex: 1;\n  margin: 0 auto;\n  max-width: 40rem;\n  width: 40rem;\n}\np,\nh1 {\n  margin: 0;\n  padding: 10px 0.5em;\n}\np {\n  font-size: 1.125rem;\n}\n@media only screen and (min-width: 40em) {\n  p {\n    font-size: 1.25rem;\n  }\n}\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.688rem;\n  font-weight: bolder;\n}\nheader hr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  animation: var(--move-in-animation);\n  animation-delay: 250ms;\n}\nmain p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n.logo-link {\n  display: block;\n  width: 5rem;\n  height: 5rem;\n  margin: 2.5rem auto;\n}\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f35325;\n}\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n.footer {\n  text-align: center;\n  padding: 1.25rem 0;\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\nfooter [href*=\"code\"]:hover {\n  color: #007acc;\n}\nfooter [href*=\"github\"]:hover {\n  color: #6cc644;\n}\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n  footer {\n    text-align: unset;\n    padding: 1.25rem 0 2.5rem;\n    max-width: calc(100vw - 10vw);\n    margin: 0 auto;\n  }\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTkyNzEz/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders. \">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"https://microsoft.github.io/join-dev-design/microsoft-og-image.png\">\n  <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <figure class=\"logo-css\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </figure>\n      </a>\n      <h1>Microsoft is looking for designers who code to help create the most compelling developer tools &amp; services on the planet.\n      </h1>\n      <hr>\n    </header>\n    <main>\n      <p>We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n\n      <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>\n\n      <p>We believe in\n        <a href=\"https://www.microsoft.com/en-us/diversity/\" title=\"Microsoft's diversity and inclusion efforts\">diversity</a>,\n        <a href=\"https://open.microsoft.com/\" title=\"Articles and updates on Microsoft's open source contributions\">openness</a>, and building\n        <a href=\"https://www.microsoft.com/design/\" title=\"Microsoft's design tools and Fluent Design System\">delightful tools</a> that empower every person and organization to achieve more.\n      </p>\n\n      <p>Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.</p>\n    </main>\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <span class=\"footer-piece\">Designed in\n      <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>\n    <span class=\"footer-piece\">Built in\n      <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>\n    <span class=\"footer-piece\">\n      Created by\n      <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\n      <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.</span>\n  </footer>\n  <script src=\"theme/theme.js\"></script>\n  <script type=\"text/javascript\">\n    function logLogo(sz) {\n      var sp = 10;\n      var styles = [\n        \"font-size: 1px\",\n        \"display: inline-block\",\n        \"padding-left: \" + (sz * 2 + sp) + \"px\",\n        \"padding-top: \" + (sz * 2 + sp) + \"px\",\n        \"background-image: linear-gradient(90deg, #F0521F 0px, #F0521F <p1>px, transparent <p1>px, transparent <p2>px, #7FCC2C <p2>px, #7FCC2C <p3>px, transparent <p3>px), linear-gradient(90deg, #00ADF0 0px, #00ADF0 <p4>px, transparent <p4>px, transparent <p5>px, #FCBA12 <p5>px, #FCBA12 <p6>px, transparent <p6>px)\"\n          .replace(/<p1>/g, '' + (sz))\n          .replace(/<p2>/g, '' + (sz + sp))\n          .replace(/<p3>/g, '' + (sz * 2 + sp))\n          .replace(/<p4>/g, '' + (sz))\n          .replace(/<p5>/g, '' + (sz + sp))\n          .replace(/<p6>/g, '' + (sz * 2 + sp)),\n        \"background-repeat: no-repeat\",\n        \"background-size: \" + (sz * 2 + sp) + \"px \" + sz + \"px\",\n        \"background-position: 0 0, 0 \" + (sz + sp) + \"px\"\n      ]\n\n      console.log('%c ', styles.join(';'));\n      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')\n    }\n\n    logLogo(100);\n\n    fetch(\n      'https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors'\n    )\n      .then(function (response) {\n        if (response.status !== 200) {\n          console.log(\n            'Looks like there was a problem. Status Code: ' + response.status\n          )\n          return\n        }\n        response.json().then(function (data) {\n          var contributors = document.getElementById('contributors')\n          contributors.innerText = data.length\n        })\n      })\n      .catch(function (err) {\n        console.log('Fetch Error :-S', err)\n      })\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTkyNzEz/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  padding: 1rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 900;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: 1.5s;\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAyOTkyNzEz/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDA3MjAy/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n\n/* Animations */\n\n:root {\n  --blue: #05a6f0;\n  --yellow: #ffba08;\n  --green: #6cc644;\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, \"SFMono-Regular\", Menlo,\n    \"DejaVu Sans Mono\", monospace;\n  line-height: 1.25;\n  background-color: var(--page-background);\n}\nhtml[data-loaded] {\n  background: linear-gradient(to bottom, var(--blue) 33%, var(--yellow) 67%);\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: linear-gradient(to bottom, var(--yellow) 33%, var(--blue) 67%);\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: var(--page-color);\n  background-color: var(--page-background);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background: var(--blue);\n}\n\n::selection {\n  color: white;\n  background: #05a6f0; /* Edge could not work with custom property here */\n}\n\na {\n  color: var(--yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover,\na:focus {\n  color: var(--blue);\n}\n\np,\nh1 {\n  margin: 1rem 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f33525;\n}\n\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  padding-bottom: 1rem;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\nfooter {\n  margin: 1rem 0 0;\n  text-align: center;\n  font-size: 0.8rem;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDA3MjAy/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo-css\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main role=\"main\">\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services\n        on the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n        the future of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to\n        achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n    \n    logLogo(100);\n  </script>\n  <script type=\"text/javascript\">\n    function markDocumentAsLoaded() {\n      setTimeout(function() {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDA3MjAy/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDA3MjAy/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDE2MDc2/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n\n/* Animations */\n\n:root {\n  --blue: #05a6f0;\n  --yellow: #ffba08;\n  --green: #6cc644;\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, \"SFMono-Regular\", Menlo,\n    \"DejaVu Sans Mono\", monospace;\n  line-height: 1.25;\n  background: linear-gradient(to bottom, var(--blue) 33%, var(--yellow) 67%);\n  background-color: var(--page-background);\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background: linear-gradient(to bottom, var(--yellow) 33%, var(--blue) 67%);\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: var(--page-color);\n  background-color: var(--page-background);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background: var(--blue);\n}\n\n::selection {\n  color: white;\n  background: #05a6f0; /* Edge could not work with custom property here */\n}\n\na {\n  color: var(--yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover,\na:focus {\n  color: var(--blue);\n}\n\np,\nh1 {\n  margin: 1rem 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto 2.5rem;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f33525;\n}\n\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  padding-bottom: 1rem;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\nfooter {\n  margin: 1rem 0 0;\n  text-align: center;\n  font-size: 0.8rem;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDE2MDc2/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo-css\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main role=\"main\">\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services\n        on the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n        the future of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to\n        achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(sz) {\n      const sp = 10;\n      const styles = [\n        'font-size: 1px',\n        'display: inline-block',\n        'padding-left: ' + (sz * 2 + sp) + 'px',\n        'padding-top: ' + (sz * 2 + sp) + 'px',\n        'background-image: linear-gradient(90deg, #F0521F 0px, #F0521F <p1>px, transparent <p1>px, transparent <p2>px, #7FCC2C <p2>px, #7FCC2C <p3>px, transparent <p3>px), linear-gradient(90deg, #00ADF0 0px, #00ADF0 <p4>px, transparent <p4>px, transparent <p5>px, #FCBA12 <p5>px, #FCBA12 <p6>px, transparent <p6>px)'\n          .replace(/<p1>/g, '' + (sz))\n          .replace(/<p2>/g, '' + (sz + sp))\n          .replace(/<p3>/g, '' + (sz * 2 + sp))\n          .replace(/<p4>/g, '' + (sz))\n          .replace(/<p5>/g, '' + (sz + sp))\n          .replace(/<p6>/g, '' + (sz * 2 + sp)),\n        'background-repeat: no-repeat',\n        'background-size: ' + (sz * 2 + sp) + 'px ' + sz + 'px',\n        'background-position: 0 0, 0 ' + (sz + sp) + 'px'\n      ];\n      \n      console.log('%c ', styles.join(';'));\n      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')\n    }\n    \n    logLogo(100);\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDE2MDc2/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDE2MDc2/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDI4ODU4/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n\n/* Animations */\n\n:root {\n  --blue: #05a6f0;\n  --yellow: #ffba08;\n  --green: #6cc644;\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, \"SFMono-Regular\", Menlo,\n    \"DejaVu Sans Mono\", monospace;\n  line-height: 1.25;\n  background: linear-gradient(to bottom, var(--blue) 33%, var(--yellow) 67%);\n  background-color: var(--page-background);\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background: linear-gradient(to bottom, var(--yellow) 33%, var(--blue) 67%);\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: var(--page-color);\n  background-color: var(--page-background);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background: var(--blue);\n}\n\n::selection {\n  color: white;\n  background: #05a6f0; /* Edge could not work with custom property here */\n}\n\na {\n  color: var(--yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover,\na:focus {\n  color: var(--blue);\n}\n\np,\nh1 {\n  margin: 1rem 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto 2.5rem;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f33525;\n}\n\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  padding-bottom: 1rem;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\nfooter {\n  margin: 1rem 0 0;\n  text-align: center;\n  font-size: 0.8rem;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDI4ODU4/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo-css\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main role=\"main\">\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services\n        on the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n        the future of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to\n        achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(sz) {\n      const sp = 10;\n      const styles = [\n        'font-size: 1px',\n        'display: inline-block',\n        'padding-left: ' + (sz * 2 + sp) + 'px',\n        'padding-top: ' + (sz * 2 + sp) + 'px',\n        'background-image: linear-gradient(90deg, #F0521F 0px, #F0521F <p1>px, transparent <p1>px, transparent <p2>px, #7FCC2C <p2>px, #7FCC2C <p3>px, transparent <p3>px), linear-gradient(90deg, #00ADF0 0px, #00ADF0 <p4>px, transparent <p4>px, transparent <p5>px, #FCBA12 <p5>px, #FCBA12 <p6>px, transparent <p6>px)'\n          .replace(/<p1>/g, '' + (sz))\n          .replace(/<p2>/g, '' + (sz + sp))\n          .replace(/<p3>/g, '' + (sz * 2 + sp))\n          .replace(/<p4>/g, '' + (sz))\n          .replace(/<p5>/g, '' + (sz + sp))\n          .replace(/<p6>/g, '' + (sz * 2 + sp)),\n        'background-repeat: no-repeat',\n        'background-size: ' + (sz * 2 + sp) + 'px ' + sz + 'px',\n        'background-position: 0 0, 0 ' + (sz + sp) + 'px'\n      ];\n      \n      console.log('%c ', styles.join(';'));\n      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')\n    }\n    \n    logLogo(100);\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDI4ODU4/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDI4ODU4/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDI5MzU3/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n\n/* Animations */\n\n:root {\n  --blue: #05a6f0;\n  --yellow: #ffba08;\n  --green: #6cc644;\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, \"SFMono-Regular\", Menlo,\n    \"DejaVu Sans Mono\", monospace;\n  line-height: 1.25;\n  background: linear-gradient(to bottom, var(--blue) 33%, var(--yellow) 67%);\n  background-color: var(--page-background);\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background: linear-gradient(to bottom, var(--yellow) 33%, var(--blue) 67%);\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: var(--page-color);\n  background-color: var(--page-background);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background: var(--blue);\n}\n\n::selection {\n  color: white;\n  background: #05a6f0; /* Edge could not work with custom property here */\n}\n\na {\n  color: var(--yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover,\na:focus {\n  color: var(--blue);\n}\n\np,\nh1 {\n  margin: 1rem 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f33525;\n}\n\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  padding-bottom: 1rem;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\nfooter {\n  margin: 1rem 0 0;\n  text-align: center;\n  font-size: 0.8rem;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDI5MzU3/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo-css\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main role=\"main\">\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services\n        on the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n        the future of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to\n        achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n    \n    logLogo(100);\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDI5MzU3/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDI5MzU3/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDQ5NDA4/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n\n/* Animations */\n\n:root {\n  --blue: #05a6f0;\n  --yellow: #ffba08;\n  --green: #6cc644;\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, \"SFMono-Regular\", Menlo,\n    \"DejaVu Sans Mono\", monospace;\n  line-height: 1.25;\n  background: linear-gradient(to bottom, var(--blue) 33%, var(--yellow) 67%);\n  background-color: var(--page-background);\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background: linear-gradient(to bottom, var(--yellow) 33%, var(--blue) 67%);\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: var(--page-color);\n  background-color: var(--page-background);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background: var(--blue);\n}\n\n::selection {\n  color: white;\n  background: #05a6f0; /* Edge could not work with custom property here */\n}\n\na {\n  color: var(--yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover,\na:focus {\n  color: var(--blue);\n}\n\np,\nh1 {\n  margin: 1rem 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto 2.5rem;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f33525;\n}\n\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  padding-bottom: 1rem;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\nfooter {\n  margin: 1rem 0 0;\n  text-align: center;\n  font-size: 0.8rem;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDQ5NDA4/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo-css\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main role=\"main\">\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services\n        on the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n        the future of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to\n        achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n    \n    logLogo(100);\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDQ5NDA4/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDQ5NDA4/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDU4MTMx/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n\n/* Animations */\n\n:root {\n  --blue: #05a6f0;\n  --yellow: #ffba08;\n  --green: #6cc644;\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, \"SFMono-Regular\", Menlo,\n    \"DejaVu Sans Mono\", monospace;\n  line-height: 1.25;\n  background: linear-gradient(to bottom, var(--blue) 33%, var(--yellow) 67%);\n  background-color: var(--page-background);\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background: linear-gradient(to bottom, var(--yellow) 33%, var(--blue) 67%);\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: var(--page-color);\n  background-color: var(--page-background);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background: var(--blue);\n}\n\n::selection {\n  color: white;\n  background: #05a6f0; /* Edge could not work with custom property here */\n}\n\na {\n  color: var(--yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover,\na:focus {\n  color: var(--blue);\n}\n\np,\nh1 {\n  margin: 1rem 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto 2.5rem;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f33525;\n}\n\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  padding-bottom: 1rem;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\nfooter {\n  margin: 1rem 0 0;\n  text-align: center;\n  font-size: 0.8rem;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDU4MTMx/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo-css\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main role=\"main\">\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services\n        on the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n        the future of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to\n        achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n    \n    logLogo(100);\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDU4MTMx/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDU4MTMx/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDYzOTg4/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n\n/* Animations */\n\n:root {\n  --blue: #05a6f0;\n  --yellow: #ffba08;\n  --green: #6cc644;\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: 125%;\n  font-family: Inconsolata, Consolas, \"SFMono-Regular\", Menlo,\n    \"DejaVu Sans Mono\", monospace;\n  line-height: 1.25;\n  background: linear-gradient(to bottom, var(--blue) 33%, var(--yellow) 67%);\n  background-color: var(--page-background);\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  opacity: 0;\n  z-index: -1;\n  background: linear-gradient(to bottom, var(--yellow) 33%, var(--blue) 67%);\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  color: var(--page-color);\n  background-color: var(--page-background);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: white;\n  background: var(--blue);\n}\n\n::selection {\n  color: white;\n  background: #05a6f0; /* Edge could not work with custom property here */\n}\n\na {\n  color: var(--yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover,\na:focus {\n  color: var(--blue);\n}\n\np,\nh1 {\n  margin: 1rem 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: 2rem auto 2.5rem;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo-image {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\n.logo-css {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: #f33525;\n}\n\n.logo-tile--green {\n  background-color: #81bc06;\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: #05a6f0;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: #ffba08;\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  padding-bottom: 1rem;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\nfooter {\n  margin: 1rem 0 0;\n  text-align: center;\n  font-size: 0.8rem;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDYzOTg4/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo-css\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main role=\"main\">\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services\n        on the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build\n        the future of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to\n        achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(sz) {\n      const sp = 10;\n      const styles = [\n        'font-size: 1px',\n        'display: inline-block',\n        'padding-left: ' + (sz * 2 + sp) + 'px',\n        'padding-top: ' + (sz * 2 + sp) + 'px',\n        'background-image: linear-gradient(90deg, #F0521F 0px, #F0521F <p1>px, transparent <p1>px, transparent <p2>px, #7FCC2C <p2>px, #7FCC2C <p3>px, transparent <p3>px), linear-gradient(90deg, #00ADF0 0px, #00ADF0 <p4>px, transparent <p4>px, transparent <p5>px, #FCBA12 <p5>px, #FCBA12 <p6>px, transparent <p6>px)'\n          .replace(/<p1>/g, '' + (sz))\n          .replace(/<p2>/g, '' + (sz + sp))\n          .replace(/<p3>/g, '' + (sz * 2 + sp))\n          .replace(/<p4>/g, '' + (sz))\n          .replace(/<p5>/g, '' + (sz + sp))\n          .replace(/<p6>/g, '' + (sz * 2 + sp)),\n        'background-repeat: no-repeat',\n        'background-size: ' + (sz * 2 + sp) + 'px ' + sz + 'px',\n        'background-position: 0 0, 0 ' + (sz + sp) + 'px'\n      ];\n      \n      console.log('%c ', styles.join(';'));\n      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')\n    }\n    \n    logLogo(100);\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDYzOTg4/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDYzOTg4/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDcyNjQw/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --medium-grey: #777;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, var(--brand-blue)),\n    color-stop(0.67, var(--brand-yellow))\n  );\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-blue) 33%, var(--brand-yellow) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-blue), var(--brand-yellow))\"\n  );\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  line-height: var(--title-line-height);\n  font-weight: bolder;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid var(--medium-grey);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDcyNjQw/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body>\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      console.log(\n        '👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design'\n      );\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDcyNjQw/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMDcyNjQw/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", \"disabled\");\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", \"disabled\");\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMTYyNzE2/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n@keyframes text-gradient-ltr {\n  to {\n    background-position: -600% center;\n  }\n}\n\n@keyframes text-gradient-rtl {\n  to {\n    background-position: 600% center;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n}\n\na:hover,\na:focus {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-yellow) 25%,\n    var(--brand-green) 50%,\n    var(--brand-blue) 75%,\n    var(--brand-yellow) 100%\n  );\n  background-size: 600% auto;\n  -webkit-text-fill-color: transparent;\n  -webkit-background-clip: text;\n  background-clip: text;\n}\n\nhtml[dir=\"ltr\"] a:not(.logo-link):hover,\nhtml[dir=\"ltr\"] a:not(.logo-link):focus {\n  animation: text-gradient-ltr 6.5s linear infinite;\n}\n\nhtml[dir=\"rtl\"] a:not(.logo-link):hover,\nhtml[dir=\"rtl\"] a:not(.logo-link):focus {\n  animation: text-gradient-rtl 6.5s linear infinite;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMTYyNzE2/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\" dir=\"ltr\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body class=\"js-theme-dark\">\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p>\n        <a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a>\n      </p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMTYyNzE2/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  cursor: pointer;\n  display: inline-block;\n  position: relative;\n  margin: auto auto;\n  padding: 0.5rem 0.5rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n  pointer-events: all;\n}\n\n.theme__list,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 0px solid #444;\n  border-radius: 0.6rem;\n  cursor: pointer;\n  z-index: 100;\n}\n\nbutton.theme__button:focus {\n  text-decoration: none;\n  outline: none;\n  box-shadow: none;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: var(--blue);\n}\n\n.js-theme-light a:hover {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-blue) 25%,\n    var(--brand-green) 50%,\n    var(--brand-yellow) 75%,\n    var(--brand-blue) 100%\n  );\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-dark .theme__button[value=\"dark\"] {\n  z-index: 95;\n  border: 3px solid #828282;\n}\n.js-theme-light .theme__button[value=\"light\"] {\n  z-index: 95;\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMTYyNzE2/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar activeTheme = \"dark\";\n\ndocument.querySelector(\".theme\").onclick = function(e) {\n  $body.classList.remove(\"js-theme-\" + activeTheme);\n  activeTheme = activeTheme === \"dark\" ? \"light\" : \"dark\";\n  $body.classList.add(\"js-theme-\" + activeTheme);\n};\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMjQ4ODAz/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --medium-grey: #777;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, var(--brand-blue)),\n    color-stop(0.67, var(--brand-yellow))\n  );\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-blue) 33%, var(--brand-yellow) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-blue), var(--brand-yellow))\"\n  );\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  line-height: var(--title-line-height);\n  font-weight: bolder;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid var(--medium-grey);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMjQ4ODAz/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main role=\"main\">\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      console.log(\n        '👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design'\n      );\n    }\n\n    logLogo(100);\n\n  </script>\n  <script type=\"text/javascript\">\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMjQ4ODAz/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMjQ4ODAz/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMjU1ODAx/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --medium-grey: #777;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, var(--brand-blue)),\n    color-stop(0.67, var(--brand-yellow))\n  );\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-blue) 33%, var(--brand-yellow) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-blue), var(--brand-yellow))\"\n  );\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  line-height: var(--title-line-height);\n  font-weight: bolder;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid var(--medium-grey);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMjU1ODAx/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body>\n  <div class=\"container\">\n    <header role=\"banner\">\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main role=\"main\">\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\" role=\"contentinfo\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      console.log(\n        '👋 Hi there! 👋\\n\\nIt seems you like to poke around as much as we do.\\n\\nhttps://github.com/Microsoft/join-dev-design'\n      );\n    }\n\n    logLogo(100);\n\n  </script>\n  <script type=\"text/javascript\">\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMjU1ODAx/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzMjU1ODAx/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", true);\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", true);\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNDA3NTgw/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  line-height: var(--title-line-height);\n  font-weight: bolder;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNDA3NTgw/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body>\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p><a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a></p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNDA3NTgw/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNDA3NTgw/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", \"disabled\");\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", \"disabled\");\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNDA4NDY5/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --medium-grey: #777;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, var(--brand-blue)),\n    color-stop(0.67, var(--brand-yellow))\n  );\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-blue) 33%, var(--brand-yellow) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-blue), var(--brand-yellow))\"\n  );\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  line-height: var(--title-line-height);\n  font-weight: bolder;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid var(--medium-grey);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNDA4NDY5/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body>\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p><a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a></p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNDA4NDY5/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNDA4NDY5/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", \"disabled\");\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", \"disabled\");\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNDA5NTQw/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --medium-grey: #777;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, var(--brand-blue)),\n    color-stop(0.67, var(--brand-yellow))\n  );\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-blue) 33%, var(--brand-yellow) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-blue), var(--brand-yellow))\"\n  );\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  line-height: var(--title-line-height);\n  font-weight: bolder;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid var(--medium-grey);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNDA5NTQw/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body>\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNDA5NTQw/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNDA5NTQw/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", \"disabled\");\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", \"disabled\");\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTI4Nzg0/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --medium-grey: #777;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, var(--brand-blue)),\n    color-stop(0.67, var(--brand-yellow))\n  );\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-blue) 33%, var(--brand-yellow) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-blue), var(--brand-yellow))\"\n  );\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  line-height: var(--title-line-height);\n  font-weight: bolder;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid var(--medium-grey);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTI4Nzg0/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body>\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p><a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a></p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTI4Nzg0/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTI4Nzg0/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", \"disabled\");\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", \"disabled\");\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTM1NTUw/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, var(--brand-blue)),\n    color-stop(0.67, var(--brand-yellow))\n  );\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-blue) 33%, var(--brand-yellow) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-blue), var(--brand-yellow))\"\n  );\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  line-height: var(--title-line-height);\n  font-weight: bolder;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTM1NTUw/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body>\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p><a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a></p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTM1NTUw/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTM1NTUw/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", \"disabled\");\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", \"disabled\");\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTQwNTU0/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background: -webkit-gradient(\n    linear,\n    left bottom,\n    left top,\n    color-stop(0.33, var(--brand-blue)),\n    color-stop(0.67, var(--brand-yellow))\n  );\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-blue) 33%, var(--brand-yellow) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-blue), var(--brand-yellow))\"\n  );\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n  transition: 400ms color;\n}\n\na:hover {\n  color: var(--brand-blue);\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\nheader h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: var(--title-font-size);\n  line-height: var(--title-line-height);\n  font-weight: bolder;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\n\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\n\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTQwNTU0/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Inconsolata\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body>\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button js-theme-button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p><a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a></p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTQwNTU0/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  position: relative;\n  margin: 1rem 0;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n}\n\n.theme__list,\n.theme_item,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 1px solid #444;\n  border-radius: 0.6rem;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n.theme__button:disabled {\n  z-index: 95;\n  border: 3px solid #444;\n}\n\n.theme__button:not([disabled]) {\n  cursor: pointer;\n  z-index: 100;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: #05a6f0;\n}\n\n.js-theme-light a:hover {\n  color: #f35325;\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-light .theme__button {\n  border: 1px solid #dedede;\n}\n\n.js-theme-light .theme__button:disabled {\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTQwNTU0/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar $themeBtns = document.querySelectorAll(\".js-theme-button\");\n\n$themeBtns[0].setAttribute(\"disabled\", \"disabled\");\n\n$themeBtns.forEach(function(ele) {\n  ele.onclick = function(e) {\n    var selectedName = e.target.value;\n\n    $themeBtns.forEach(function(ele) {\n      var themeName = ele.value;\n      if (themeName === selectedName) return;\n      $body.classList.remove(\"js-theme-\" + themeName);\n      ele.removeAttribute(\"disabled\");\n    });\n\n    $body.classList.add(\"js-theme-\" + selectedName);\n    ele.setAttribute(\"disabled\", \"disabled\");\n  };\n});\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTk4NDI2/docs/css/style.css",
    "content": "@charset \"UTF-8\";\n:root {\n  /* color defaults */\n  --brand-blue: #05a6f0;\n  --brand-yellow: #ffba08;\n  --brand-red: #f35325;\n  --brand-green: #81bc06;\n  --white: #ffffff;\n  --off-white: #bbb;\n  --dark-grey: #121212;\n  /* typeface defaults */\n  --primary-typeface: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica,\n    Tahoma, Arial, sans-serif;\n  --title-font-size: 24px;\n  --title-line-height: 30px;\n  --base-font-size: 20px;\n  --base-font-line-height: 28px;\n  --small-font-size: 12px;\n  --small-font-line-height: 14px;\n  /* animations */\n  --page-background: #121212;\n  --page-color: #bbb;\n  --root-gradient-animation: 4s both root-gradient linear infinite;\n  --move-in-offset: 20px;\n  --move-in-animation: 1s both move-in;\n  --move-in-base-delay: 100ms;\n  --logo-tiles-in-animation: 1s both logo-tiles-in;\n  --logo-tiles-in-delay: 100ms;\n  /* spacing */\n  --small-space: 1em;\n  --large-space: 2em;\n  --text-block-spacing: 0.5em;\n}\n\n@keyframes move-in {\n  from {\n    transform: translateY(var(--move-in-offset));\n    opacity: 0;\n  }\n  to {\n    transform: translateY(0);\n    opacity: 1;\n  }\n}\n\n@keyframes logo-tiles-in {\n  0% {\n    opacity: 0;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  25% {\n    opacity: 1;\n  }\n  50% {\n    opacity: 1;\n  }\n  55% {\n    opacity: 0;\n  }\n  60% {\n    opacity: 1;\n    filter: grayscale(1) hue-rotate(100deg);\n  }\n  100% {\n    opacity: 1;\n    filter: grayscale(0) hue-rotate(0deg);\n  }\n}\n\n@keyframes logo-tiles-hover {\n  from {\n    filter: hue-rotate(0deg);\n  }\n  to {\n    filter: hue-rotate(360deg);\n  }\n}\n\n@keyframes root-gradient {\n  0% {\n    opacity: 0;\n  }\n  40% {\n    opacity: 1;\n  }\n  60% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n\n@keyframes text-gradient-ltr {\n  to {\n    background-position: -600% center;\n  }\n}\n\n@keyframes text-gradient-rtl {\n  to {\n    background-position: 600% center;\n  }\n}\n\n/* Common */\n\nhtml {\n  position: relative;\n  font-size: var(--base-font-size);\n  font-family: var(--primary-typeface);\n  line-height: var(--base-font-line-height);\n  background-color: var(--dark-grey);\n}\n\nhtml[data-loaded] {\n  background: linear-gradient(\n    to bottom,\n    var(--brand-blue) 33%,\n    var(--brand-yellow) 67%\n  );\n}\n\nhtml:before {\n  content: \"\";\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  background: unquote(\n    \"-moz-linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: unquote(\n    \"linear-gradient(center bottom, var(--brand-yellow) 33%, var(--brand-blue) 67%)\"\n  );\n  background: linear-gradient(\n    to bottom,\n    var(--brand-yellow) 33%,\n    var(--brand-blue) 67%\n  );\n  animation: var(--root-gradient-animation);\n}\n\nbody {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  min-height: calc(100vh - 10px);\n  margin: 5px;\n  padding: 0 var(--small-space);\n  color: var(--off-white);\n  background-color: var(--dark-grey);\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n::-moz-selection {\n  color: var(--white);\n  background-color: var(--brand-blue);\n}\n\n::selection {\n  color: var(--white);\n  background: #05a6f0;\n  /* Edge could not work with custom property here */\n  background-color: var(--brand-blue);\n}\n\na {\n  color: var(--brand-yellow);\n  text-decoration: none;\n}\n\na:hover,\na:focus {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-yellow) 25%,\n    var(--brand-green) 50%,\n    var(--brand-blue) 75%,\n    var(--brand-yellow) 100%\n  );\n  background-size: 600% auto;\n  -webkit-text-fill-color: transparent;\n  -webkit-background-clip: text;\n  background-clip: text;\n}\n\nhtml[dir=\"ltr\"] a:not(.logo-link):hover,\nhtml[dir=\"ltr\"] a:not(.logo-link):focus {\n  animation: text-gradient-ltr 6.5s linear infinite;\n}\n\nhtml[dir=\"rtl\"] a:not(.logo-link):hover,\nhtml[dir=\"rtl\"] a:not(.logo-link):focus {\n  animation: text-gradient-rtl 6.5s linear infinite;\n}\n\np,\nh1 {\n  margin: 0;\n  padding: var(--text-block-spacing) 0;\n}\n\n/* Container */\n\n.container {\n  max-width: 31rem;\n  margin: 0 auto auto;\n}\n\n@media only screen and (max-width: 40em) {\n  .container {\n    max-width: 80vw;\n  }\n  .container p {\n    font-size: 1.125rem;\n  }\n}\n\nmain p:nth-child(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\n\nmain p:nth-child(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\n\nmain p:nth-child(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Logo */\n\n.logo-link {\n  display: block;\n  width: 4rem;\n  height: 4rem;\n  margin: var(--large-space) auto;\n}\n\n.logo-link:hover {\n  animation: 1s both logo-tiles-hover linear infinite;\n}\n\n.logo {\n  display: flex;\n  flex-wrap: wrap;\n  height: 100%;\n  width: 100%;\n  margin: 0;\n}\n\n.logo-tile {\n  display: block;\n  width: 45%;\n  height: 45%;\n  margin: 2.5%;\n  outline: 1px solid transparent;\n  animation: var(--logo-tiles-in-animation);\n}\n\n.logo-tile--red {\n  background-color: var(--brand-red);\n}\n\n.logo-tile--green {\n  background-color: var(--brand-green);\n  animation-delay: var(--logo-tiles-in-delay);\n}\n\n.logo-tile--blue {\n  background-color: var(--brand-blue);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 2);\n}\n\n.logo-tile--yellow {\n  background-color: var(--brand-yellow);\n  animation-delay: calc(var(--logo-tiles-in-delay) * 3);\n}\n\n/* Main */\n\nmain h1 {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 4);\n  font-size: 1.3rem;\n  font-weight: bold;\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  margin-bottom: var(--small-space);\n  padding-bottom: var(--small-space);\n}\n\nmain p {\n  animation: var(--move-in-animation);\n}\nmain p:nth-of-type(1) {\n  animation-delay: calc(var(--move-in-base-delay) * 5);\n}\nmain p:nth-of-type(2) {\n  animation-delay: calc(var(--move-in-base-delay) * 6);\n}\nmain p:nth-of-type(3) {\n  animation-delay: calc(var(--move-in-base-delay) * 7);\n}\nmain p:nth-of-type(4) {\n  animation-delay: calc(var(--move-in-base-delay) * 8);\n}\n\n/* Footer */\n\n.footer {\n  font-size: var(--small-font-size);\n  line-height: var(--small-font-line-height);\n  text-align: center;\n  margin: var(--small-space) 0 0;\n  padding: var(--small-space) 0;\n  overflow: hidden;\n}\n\n@media only screen and (max-width: 40em) {\n  footer {\n    font-size: 1rem;\n    margin: 0 auto;\n    max-width: 80vw;\n  }\n}\n\nfooter p {\n  animation: var(--move-in-animation);\n  animation-delay: calc(var(--move-in-base-delay) * 11);\n}\n\nfooter [href*=\"github\"]:hover,\nfooter [href*=\"github\"]:focus {\n  color: var(--brand-green);\n}\n\n.footer-piece--separate {\n  display: block;\n}\n\n@media only screen and (max-width: 40em) {\n  .footer-piece {\n    display: block;\n  }\n}\n\n.time-travel {\n  text-align: center;\n}\n\n.time-travel a {\n  cursor: pointer;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTk4NDI2/docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\" dir=\"ltr\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"description\" content=\"Microsoft is hiring technical product designers and design leaders.\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"images/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"css/style.css\">\n  <link rel=\"stylesheet\" href=\"theme/theme.css\">\n  <link rel=\"shortcut icon\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n</head>\n\n<body class=\"js-theme-dark\">\n  <div class=\"container\">\n    <header>\n      <a class=\"logo-link\" href=\"https://microsoft.com\" title=\"Microsoft Website\">\n        <div class=\"logo\" role=\"img\" aria-label=\"Microsoft Logo\">\n          <span class=\"logo-tile logo-tile--red\"></span>\n          <span class=\"logo-tile logo-tile--green\"></span>\n          <span class=\"logo-tile logo-tile--blue\"></span>\n          <span class=\"logo-tile logo-tile--yellow\"></span>\n        </div>\n      </a>\n    </header>\n    <main>\n      <h1>\n        Microsoft is looking for designers who code to help create the most compelling developer tools&nbsp;&amp;&nbsp;services on\n        the planet.\n      </h1>\n      <p>\n        We have open positions for technical product designers &amp; design leaders in San Francisco, Seattle, and elsewhere.\n      </p>\n      <p>\n        We use PCs, Macs, Figma, Sketch, GitHub, JavaScript, ZEIT, and other modern tools to design, prototype, and build the future\n        of software development.\n      </p>\n      <p>\n        We believe in diversity, openness, and building delightful tools that empower every person and organization to achieve more.\n      </p>\n      <p>\n        Interested? Send a PR with any improvement to\n        <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\n        <a href=\"mailto:dasiege@microsoft.com\" title=\"Email address for dasiege@microsoft.com\">email us</a>.\n      </p>\n    </main>\n  </div>\n  <footer class=\"footer\">\n    <div class=\"theme\">\n      <ul class=\"theme__list\">\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"dark\" title=\"Enable dark theme\">Dark</button>\n        </li>\n        <li class=\"theme__item\">\n          <button class=\"theme__button\" value=\"light\" title=\"Enable light theme\">Light</button>\n        </li>\n      </ul>\n    </div>\n    <div class=\"time-travel\">\n      <p>\n        <a href=\"./time-travel/\" title=\"See past versions of this site\">Time Travel</a>\n      </p>\n    </div>\n    <p>\n      <span class=\"footer-piece\">\n        Designed in\n        <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>.\n      </span>\n      <span class=\"footer-piece\">\n        Built in\n        <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>.\n      </span>\n      <span class=\"footer-piece footer-piece--separate\">\n        Created by\n        <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\n        <a href=\"https://github.com/Microsoft/join-dev-design\" title=\"GitHub repository join-dev-design by the Microsoft organization\">GitHub</a>.\n      </span>\n    </p>\n    <script>\n      fetch('https://api.github.com/repos/Microsoft/join-dev-design/stats/contributors')\n        .then(response => {\n          if (response.status !== 200) {\n            console.log('Looks like there was a problem. Status Code: ' + response.status);\n            return;\n          }\n          return response.json();\n        })\n        .then(data => document.getElementById('contributors').innerText = data.length)\n        .catch(err => console.log('Fetch Error :-S', err));\n\n    </script>\n  </footer>\n  <script async src=\"theme/theme.js\"></script>\n  <script>\n    function logLogo(size) {\n      const style =\n        `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;`;\n      console.log('%c■     ', style);\n      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');\n    }\n\n    logLogo(100);\n\n  </script>\n  <script>\n    function markDocumentAsLoaded() {\n      setTimeout(function () {\n        document.documentElement.dataset.loaded = true\n      }, 1000)\n    }\n\n    addEventListener('load', markDocumentAsLoaded);\n\n  </script>\n</body>\n\n</html>"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTk4NDI2/docs/theme/theme.css",
    "content": "@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    transform: none;\n    opacity: 1;\n  }\n}\n\n/* UI Styling */\n\n.theme {\n  cursor: pointer;\n  display: inline-block;\n  position: relative;\n  margin: auto auto;\n  padding: 0.5rem 0.5rem;\n  font-size: 0;\n  text-align: center;\n  z-index: 1;\n  transition: opacity 0.3s ease;\n  pointer-events: all;\n}\n\n.theme__list,\n.theme__button {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\n.theme__list {\n  list-style: none;\n  animation: 1s both fade-in;\n  animation-delay: calc(var(--move-in-base-delay) * 9);\n}\n\n.theme__item {\n  position: relative;\n  display: inline-block;\n  vertical-align: top;\n}\n\n.theme__item + .theme__item {\n  margin-left: 0.5rem;\n  transition: margin-left 0.3s ease;\n}\n\n.theme__button {\n  display: block;\n  position: relative;\n  text-indent: -9999px;\n  width: 1.2rem;\n  height: 1.2rem;\n  background: blue;\n  border: 0px solid #444;\n  border-radius: 0.6rem;\n  cursor: pointer;\n  z-index: 100;\n}\n\nbutton.theme__button:focus {\n  text-decoration: none;\n  outline: none;\n  box-shadow: none;\n}\n\n.theme__button[value=\"dark\"] {\n  background: black;\n}\n\n.theme__button[value=\"light\"] {\n  background: white;\n}\n\n@media only screen and (min-width: 640px) {\n  .theme {\n    opacity: 0.5;\n  }\n  .theme:hover {\n    opacity: 1;\n  }\n  .theme__item + .theme__item {\n    margin-left: -0.8rem;\n  }\n  .theme:hover .theme__item + .theme__item {\n    margin-left: 0.5rem;\n  }\n}\n\n/* Theme Setting */\n\nbody {\n  transition: background-color 0.3s ease;\n}\n\nbody.js-theme-light {\n  color: #222;\n  background-color: #fdfdfd;\n}\n\n.js-theme-light main h1 {\n  border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\n\n.js-theme-light a {\n  color: var(--blue);\n}\n\n.js-theme-light a:hover {\n  background-image: linear-gradient(\n    to right,\n    var(--brand-blue) 25%,\n    var(--brand-green) 50%,\n    var(--brand-yellow) 75%,\n    var(--brand-blue) 100%\n  );\n}\n\nbody.js-theme-code {\n  color: lightslategrey;\n  font-family: \"Courier New\", Courier, monospace;\n}\n\n.js-theme-dark .theme__button[value=\"dark\"] {\n  z-index: 95;\n  border: 3px solid #828282;\n}\n.js-theme-light .theme__button[value=\"light\"] {\n  z-index: 95;\n  border: 3px solid #dedede;\n}\n"
  },
  {
    "path": "docs/time-travel/history/MDExOlB1bGxSZXF1ZXN0MjAzNTk4NDI2/docs/theme/theme.js",
    "content": "var $body = document.body;\nvar activeTheme = \"dark\";\n\ndocument.querySelector(\".theme\").onclick = function(e) {\n  $body.classList.remove(\"js-theme-\" + activeTheme);\n  activeTheme = activeTheme === \"dark\" ? \"light\" : \"dark\";\n  $body.classList.add(\"js-theme-\" + activeTheme);\n};\n"
  },
  {
    "path": "docs/time-travel/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <title>Join Microsoft Developer Design</title>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <meta property=\"og:title\" content=\"Join Microsoft Developer Design\">\n  <meta property=\"og:site_name\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:url\" content=\"https://microsoft.github.io/join-dev-design/\">\n  <meta property=\"og:description\" content=\"Microsoft is hiring technical product designers and design leaders. \">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:image\" content=\"https://microsoft.github.io/join-dev-design/microsoft-og-image.png\">\n  <link rel=\"stylesheet\" href=\"./style.css\">\n  <link rel=\"SHORTCUT ICON\" href=\"https://c.s-microsoft.com/favicon.ico?v2\" type=\"image/x-icon\">\n  <script src=\"./time-travel.js\"></script>\n</head>\n\n<body>\n  <div class=\"container\">\n    <main class=\"display-wrapper\">\n      <iframe id=\"js-display\" class=\"display\" src=\"\" frameborder=\"0\"></iframe>\n    </main>\n    <div id=\"js-history\" class=\"history\">\n      <h2 class=\"history__count\">\n        <span id=\"js-history-id\">1</span>\n        <span class=\"-text--fade\">/</span>\n        <span id=\"js-history-max\" class=\"-text-fade\">-</span>\n      </h2>\n      <div class=\"history__controller\">\n        <button id=\"js-button-first\"><span tabindex=\"-1\">First</span></button>\n        <button id=\"js-button-previous\"><span tabindex=\"-1\">Previous</span></button>\n        <button id=\"js-button-next\"><span tabindex=\"-1\">Next</span></button>\n        <button id=\"js-button-last\"><span tabindex=\"-1\">Latest</span></button>\n      </div>\n      <hr>\n      <div class=\"pr\">\n        <div class=\"pr__people-wrapper\">\n          <div class=\"pr__people people--author\">\n            <img id=\"js-pr-author-avatar\" class=\"pr__avatar\" src=\"\">\n            <p id=\"js-pr-author\"></p>\n          </div>\n          <div class=\"pr__people people--editor\">\n            <img id=\"js-pr-editor-avatar\" class=\"pr__avatar\" src=\"\">\n            <p id=\"js-pr-editor\"></p>\n          </div>\n        </div>\n        <h1 id=\"js-pr-title\" class=\"pr__title\" class=\"history__header\"></h1>\n        <a id=\"js-pr-url\" class=\"history__link\" title=\"See pull request\" href=\"#\" target=\"_blank\">See pull request</a>\n        <p id=\"js-pr-mergedAt\" class=\"pr__mergedAt\"></p>\n      </div>\n      <a class=\"history__exit\" href=\"..\" title=\"Exit to main page\">Exit</a>\n    </div>\n  </div>\n</body>\n\n</html>"
  },
  {
    "path": "docs/time-travel/index.json",
    "content": "{\n  \"data\": {\n    \"repository\": {\n      \"pullRequests\": {\n        \"edges\": [\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNDU2ODA2\",\n              \"title\": \"Visual suggestions\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/2\",\n              \"mergedAt\": \"2018-07-19T15:01:19Z\",\n              \"author\": {\n                \"login\": \"adrianmg\",\n                \"avatarUrl\":\n                  \"https://avatars0.githubusercontent.com/u/589285?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T15:01:18Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmFjNDE4N2E0NzlhY2M5OWQ5NmE3NmY2ZDBmNGMyMWRiNjllNzA1OTQ=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/ac4187a479acc99d96a76f6d0f4c21db69e70594\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNDU4Mzc4\",\n              \"title\": \"Remove overridden color CSS property\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/3\",\n              \"mergedAt\": \"2018-07-19T06:38:59Z\",\n              \"author\": {\n                \"login\": \"JMPerez\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/416456?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T06:38:58Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjkzNTk0NzI0ZjdkYTI1YTJjMGI5ZWZmMGVmZDc4M2I2NDU2OTkzYWU=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/93594724f7da25a2c0b9eff0efd783b6456993ae\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNTk0MzQw\",\n              \"title\": \"Moved styles to a css file\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/5\",\n              \"mergedAt\": \"2018-07-19T15:29:41Z\",\n              \"author\": {\n                \"login\": \"damidina\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/2275314?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T15:29:40Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjE3MDAzZTlhNDY0ZGZlZDRlODYzYzk0NTg5MGIyM2ZiNmNmZGMyNDg=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/17003e9a464dfed4e863c945890b23fb6cfdc248\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNjE5Njgz\",\n              \"title\": \"A few basic a11y fixes\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/6\",\n              \"mergedAt\": \"2018-07-19T16:47:33Z\",\n              \"author\": {\n                \"login\": \"SteveALee\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/618922?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T16:47:33Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjhmN2M5OWE5NmY1MjQwOThjMTY5ODNhZjUyMmE5ZThlMTk2NjBiOWY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/8f7c99a96f524098c16983af522a9e8e19660b9f\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNjMwODc0\",\n              \"title\": \"Use HTTPS for Figma URL\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/8\",\n              \"mergedAt\": \"2018-07-19T17:36:36Z\",\n              \"author\": {\n                \"login\": \"fiveshotsofespresso\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/26778612?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T17:36:36Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmU0MWJkNzlmMGU1N2VlYjFmYmQ3OTQxZjY5YTkzYTkzMzVhZDVkZGY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/e41bd79f0e57eeb1fbd7941f69a93a9335ad5ddf\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNjMyMTA4\",\n              \"title\":\n                \"Visual improvements: monospaced font and load animation\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/9\",\n              \"mergedAt\": \"2018-07-19T17:57:09Z\",\n              \"author\": {\n                \"login\": \"vladmoroz\",\n                \"avatarUrl\":\n                  \"https://avatars0.githubusercontent.com/u/8441036?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T17:57:08Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmMyMjA0OGM5YTcxMjVjYmU0OWQwNTc1YmNjZmE3MGU4YTEzZWJhZGE=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/c22048c9a7125cbe49d0575bccfa70e8a13ebada\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNjQwMTUx\",\n              \"title\": \"trim extra space\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/10\",\n              \"mergedAt\": \"2018-07-19T18:37:07Z\",\n              \"author\": {\n                \"login\": \"unluisco\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/6332263?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T18:37:07Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjY5OGM1OGJmMmE4OGJhMWY1YThjZjc0ZTA0ZDAwMDQwNmQzZjljNzI=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/698c58bf2a88ba1f5a8cf74e04d000406d3f9c72\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNjU1MzUz\",\n              \"title\": \"added margins for <600px screen width\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/13\",\n              \"mergedAt\": \"2018-07-19T21:34:31Z\",\n              \"author\": {\n                \"login\": \"notjaril\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/15959269?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"notjaril\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/15959269?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T21:34:30Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjRhNmVhMjViODk0NDg2MjcwM2VlZmFhYWRhNDg4YjEwMjczZTFjYmQ=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/4a6ea25b8944862703eefaaada488b10273e1cbd\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNjYwMjc3\",\n              \"title\":\n                \"indent svg file using spaces, remove fill property & add little design detail\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/15\",\n              \"mergedAt\": \"2018-07-19T21:17:49Z\",\n              \"author\": {\n                \"login\": \"unluisco\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/6332263?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T21:17:48Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmUyMTVlMTg0OTg4NmY1ZWEyMjBjYmRiMTY0NzgxNWNmY2FjNzM2ZGY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/e215e1849886f5ea220cbdb1647815cfcac736df\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNjYxMTY1\",\n              \"title\": \"prevent scrollbar from flickering\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/17\",\n              \"mergedAt\": \"2018-07-19T21:17:10Z\",\n              \"author\": {\n                \"login\": \"orouz\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/20814186?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"orouz\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/20814186?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T21:17:09Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmVjZTE2NDllNTU4N2M0YTM4YjFlMmExMmI5YzRhNWY2OGMyZDE5YWY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/ece1649e5587c4a38b1e2a12b9c4a5f68c2d19af\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNjY5NzUy\",\n              \"title\":\n                \"Improved Animations, Content Hierarchy, Readable Links, Logo\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/20\",\n              \"mergedAt\": \"2018-07-19T21:55:26Z\",\n              \"author\": {\n                \"login\": \"benjvmin\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/19807584?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"benjvmin\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/19807584?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T21:55:25Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjk3ODFmODUxM2U3OTVkZjgwYTU1MDI5N2MxMTVlNDc3MmQxZDE1MTg=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/9781f8513e795df80a550297c115e4772d1d1518\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNjgxMTcy\",\n              \"title\":\n                \"Improve accessibility by add descriptive title to links\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/22\",\n              \"mergedAt\": \"2018-07-19T21:13:54Z\",\n              \"author\": {\n                \"login\": \"reimertz\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/625287?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T21:13:53Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjdmZGQ4NTUyZWYyNjY2MWE0ZmZhNGUzZTVmN2E3NmQ4NzkyMjk5NDY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/7fdd8552ef26661a4ffa4e3e5f7a76d879229946\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNjgxMjE3\",\n              \"title\": \"add yarn.lock 🙃\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/23\",\n              \"mergedAt\": \"2018-07-19T21:31:37Z\",\n              \"author\": {\n                \"login\": \"reimertz\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/625287?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T21:31:36Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjI0OGI1MTRjMDQwNDRlMTdlODliMTY3NmI5M2M1NzdhYjQyN2VlYTE=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/248b514c04044e17e89b1676b93c577ab427eea1\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNjg4Njky\",\n              \"title\":\n                \"adds a fun little easter egg if you open the debugger tools.\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/25\",\n              \"mergedAt\": \"2018-07-19T21:30:45Z\",\n              \"author\": {\n                \"login\": \"reimertz\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/625287?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"reimertz\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/625287?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T21:30:44Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjMxMmI1ZTMwYTBkZTAyMTEwMWIxZmFmZmExMTM5NGE2YmIyNjI3MTQ=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/312b5e30a0de021101b1faffa11394a6bb262714\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzAyNDE3\",\n              \"title\": \"Added hr below header to onload animation\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/28\",\n              \"mergedAt\": \"2018-07-19T22:55:43Z\",\n              \"author\": {\n                \"login\": \"faebser\",\n                \"avatarUrl\":\n                  \"https://avatars0.githubusercontent.com/u/333862?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-19T22:55:43Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjQyOGJmYTdmYWYzYjAxNDQ3MmEwOGEzYTZjNDk4NmUyOGJhZTQwZTU=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/428bfa7faf3b014472a08a3a6c4986e28bae40e5\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzExMTI4\",\n              \"title\": \"Add animations on the logo and fine-tune animations\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/29\",\n              \"mergedAt\": \"2018-07-20T01:39:35Z\",\n              \"author\": {\n                \"login\": \"tristanlabbe\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/417203?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"tristanlabbe\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/417203?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T01:39:34Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjA3ZjI4YmI3NjUzNzZjOGE4NmY4M2VhY2I3NjA5NTFhMzU5MGVkYjk=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/07f28bb765376c8a86f83eacb760951a3590edb9\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzE2NDY5\",\n              \"title\": \"Add colour transition box for visual appeal\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/30\",\n              \"mergedAt\": \"2018-07-20T01:44:54Z\",\n              \"author\": {\n                \"login\": \"MehediH\",\n                \"avatarUrl\":\n                  \"https://avatars0.githubusercontent.com/u/10274434?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T01:44:53Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjNhZmEyZjBiMTBmMjE2MDFhN2M1ZWIzMDQ3MzY1N2UwMzMzZDFmOWY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/3afa2f0b10f21601a7c5eb30473657e0333d1f9f\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzM2NDkx\",\n              \"title\": \"Fix vertical scrollbar appearing below 1000px\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/34\",\n              \"mergedAt\": \"2018-07-20T03:23:05Z\",\n              \"author\": {\n                \"login\": \"chris-morgan\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/392868?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T03:23:04Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjAxMjY3MjlhMDYxNzEyOTEwM2E5NGYyNmNhMGY4OWEzZDg1MjJjOTU=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/0126729a0617129103a94f26ca0f89a3d8522c95\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzM3Mjk4\",\n              \"title\": \"Aria Accessibility\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/35\",\n              \"mergedAt\": \"2018-07-20T03:43:41Z\",\n              \"author\": {\n                \"login\": \"Immortalin\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/7126128?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"Immortalin\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/7126128?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T03:43:40Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjZjOTI3MWQ0Y2Y4OWQ0YWUyMWMzMzJlMWU5MWJkYTc5MjI0YjFkY2E=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/6c9271d4cf89d4ae21c332e1e91bda79224b1dca\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzM3MzA0\",\n              \"title\":\n                \"Increase contrast of GitHub link when in hover state for accessibility\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/36\",\n              \"mergedAt\": \"2018-07-20T03:42:48Z\",\n              \"author\": {\n                \"login\": \"mattmazzola\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/2856501?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"mattmazzola\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/2856501?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T03:42:47Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmViYTBiYzI0NjM0OGU2ZjQwZTRjODg4MWZhOTM4YmQwZTQyMGE2Mjc=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/eba0bc246348e6f40e4c8881fa938bd0e420a627\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzQ0OTM1\",\n              \"title\": \"Fix spelling in GitHub and Figma <a> tag titles\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/38\",\n              \"mergedAt\": \"2018-07-20T06:51:24Z\",\n              \"author\": {\n                \"login\": \"HunterMeyer\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/4690516?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T06:51:23Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjdhMjc0YWY3MDZmZjM3OWZkNWY2YzIxODE4ZTQ1ZmI4NDUxNGI3MmI=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/7a274af706ff379fd5f6c21818e45fb84514b72b\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzQ5NzE1\",\n              \"title\": \"Centre container on IE\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/39\",\n              \"mergedAt\": \"2018-07-20T19:15:16Z\",\n              \"author\": {\n                \"login\": \"mikekreuzer\",\n                \"avatarUrl\":\n                  \"https://avatars0.githubusercontent.com/u/7643644?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T19:15:15Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmZkNTgyNDBjODFlNTM2NjZiMWM4MGEyYzY2N2ZiNWMwMTg0NTA2ODI=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/fd58240c81e53666b1c80a2c667fb5c018450682\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzU3MjE0\",\n              \"title\": \"Add the footer to the animation flow\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/42\",\n              \"mergedAt\": \"2018-07-20T06:52:10Z\",\n              \"author\": {\n                \"login\": \"rudeayelo\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/140042?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T06:52:09Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjg0YzAwOTJmYTczYjY3MzNjMzc1YmRmZjdmNjQ3ODQzYjllZDdlYjU=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/84c0092fa73b6733c375bdff7f647843b9ed7eb5\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzYxNjM5\",\n              \"title\": \"Semantic Heading: H1 for semantic html & SEO purposes\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/45\",\n              \"mergedAt\": \"2018-07-20T07:30:24Z\",\n              \"author\": {\n                \"login\": \"georgewritescode\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/8780812?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T07:30:23Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmI4NTU2YmIyMTVhNDcwODNjZDBhYzg4MTI3ZTYzY2Y1NTNkNjg2ZmY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/b8556bb215a47083cd0ac88127e63cf553d686ff\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzYzMDAw\",\n              \"title\": \"Animate root gradient \\\"border\\\"\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/46\",\n              \"mergedAt\": \"2018-07-20T07:10:38Z\",\n              \"author\": {\n                \"login\": \"crislin2046\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/22254235?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T07:10:38Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmI4NDI2ZWNlYmEyZTg0MmYyODc3MzFlMmNhMWE2MmY3ZDg1MmQzZDY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/b8426eceba2e842f287731e2ca1a62f7d852d3d6\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzYzNDU3\",\n              \"title\": \"Added open graph meta tags\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/47\",\n              \"mergedAt\": \"2018-07-20T20:44:00Z\",\n              \"author\": {\n                \"login\": \"vikaskyadav\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/12607959?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T20:44:00Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjc2ODBiN2Y0NGI2NzNlYzM2MzhjZGZkYWZlMDQyZDNkYzBjZmRiMjg=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/7680b7f44b673ec3638cdfdafe042d3dc0cfdb28\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzY3MTA4\",\n              \"title\":\n                \"tweaked colors to achieve greater contrast for color blind users\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/50\",\n              \"mergedAt\": \"2018-07-20T07:26:50Z\",\n              \"author\": {\n                \"login\": \"yangwen2\",\n                \"avatarUrl\":\n                  \"https://avatars0.githubusercontent.com/u/2554783?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T07:26:49Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjQyNzViZjQzM2ZhZGMwZTAyZmUwODJmMmNiMTRjZWRlZTczZmFmYTE=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/4275bf433fadc0e02fe082f2cb14cedee73fafa1\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzY3MTI4\",\n              \"title\": \"Add live server for development\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/51\",\n              \"mergedAt\": \"2018-07-20T19:09:11Z\",\n              \"author\": {\n                \"login\": \"pubudu-ranasinghe\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/3397619?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T19:09:10Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmMzZTgyMzI3MDVmZmU4N2ZhYjIzOGI5YzA2ZTZhMzFhZmY3YTc1MTk=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/c3e8232705ffe87fab238b9c06e6a31aff7a7519\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyNzgxMDc2\",\n              \"title\": \"Added Time Travel Functionality\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/55\",\n              \"mergedAt\": \"2018-07-24T03:23:53Z\",\n              \"author\": {\n                \"login\": \"georgewritescode\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/8780812?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"georgewritescode\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/8780812?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-24T03:23:52Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjkxZDU2MzM2ODM1NTRjOTVjZTU2NmI5ZmZhYzVmNGY4OGQ0ZDhiOTU=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/91d5633683554c95ce566b9ffac5f4f88d4d8b95\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyODAwMDY2\",\n              \"title\": \"Minor spacing fixes\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/58\",\n              \"mergedAt\": \"2018-07-20T16:19:44Z\",\n              \"author\": {\n                \"login\": \"awfulaxolotl\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/711652?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T16:19:44Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjhiOTVlOWI1OWYyMzRmZmJmZTk5NTU4NjdiZjEyYTUxMmI3MDU2YmU=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/8b95e9b59f234ffbfe9955867bf12a512b7056be\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyODAzNzE5\",\n              \"title\": \"Split devtools css statements into lines\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/59\",\n              \"mergedAt\": \"2018-07-20T16:17:14Z\",\n              \"author\": {\n                \"login\": \"bryanwtan\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/8355536?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T16:17:13Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjcwNWVhMjFjZTJlNjRiYzQwYWJjZmJlNjExYWYwNGY3MjY2YzVkZDc=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/705ea21ce2e64bc40abcfbe611af04f7266c5dd7\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyODIyMDk1\",\n              \"title\": \"Add link to GitHub contributors\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/64\",\n              \"mergedAt\": \"2018-07-20T16:26:41Z\",\n              \"author\": {\n                \"login\": \"ankit-m\",\n                \"avatarUrl\":\n                  \"https://avatars0.githubusercontent.com/u/9019878?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"ankit-m\",\n                \"avatarUrl\":\n                  \"https://avatars0.githubusercontent.com/u/9019878?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T16:26:41Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjczNGRhYmNhYjBjYjVmNzljZDdjOTUzOWNiMDRiNTk3ODliYTE0NzI=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/734dabcab0cb5f79cd7c9539cb04b59789ba1472\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyODMxMTEz\",\n              \"title\": \"Gradient fixes\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/65\",\n              \"mergedAt\": \"2018-07-20T16:15:52Z\",\n              \"author\": {\n                \"login\": \"crislin2046\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/22254235?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T16:15:51Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmRjYTQxNTExYzhjZmRkMWU1ZWViYTgyNTQ5ODcwZGYwYmUzMzhjYTU=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/dca41511c8cfdd1e5eeba82549870df0be338ca5\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyODkzMzc3\",\n              \"title\": \"Updating serve to most recent version\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/68\",\n              \"mergedAt\": \"2018-07-20T16:13:38Z\",\n              \"author\": {\n                \"login\": \"MattPetitt\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/928396?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T16:13:38Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmY3MmZlMDljY2RjYjRkMmNjZGU1Njc5MWZiYWYwZmUzZWQyYmJjZjU=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/f72fe09ccdcb4d2ccde56791fbaf0fe3ed2bbcf5\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyOTI1OTA0\",\n              \"title\": \"Add themes\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/73\",\n              \"mergedAt\": \"2018-07-20T20:41:21Z\",\n              \"author\": {\n                \"login\": \"d4rekanguok\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/3383539?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T20:41:20Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjJiMTY4NWZmOTI2NWY0ZGFmNDFjNDc2ZWU2ZDhkMmQwNjhkOTM2Mzc=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/2b1685ff9265f4daf41c476ee6d8d2d068d93637\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyOTI5OTU1\",\n              \"title\":\n                \"footer: change role from 'footer' to 'contentinfo' as 'footer' is an invalid value\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/75\",\n              \"mergedAt\": \"2018-07-20T18:57:46Z\",\n              \"author\": {\n                \"login\": \"mkivikoski\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/607813?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T18:57:45Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjg0M2RlNzc4NmI5ODhmZDk0OTdhZGUwZjA0MDgxMGVlOThkNWRmYzY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/843de7786b988fd9497ade0f040810ee98d5dfc6\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyOTM2MTYw\",\n              \"title\":\n                \"content: add links to microsoft sites for diversity and openess resources\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/76\",\n              \"mergedAt\": \"2018-07-20T19:50:42Z\",\n              \"author\": {\n                \"login\": \"mkivikoski\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/607813?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T19:50:41Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmFmZWMzOWRhM2Q0ZDZlZTc1MDIxN2QxNTNkMTFlN2FiNWZiZDZiZDY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/afec39da3d4d6ee750217d153d11e7ab5fbd6bd6\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyOTQxNTcx\",\n              \"title\": \"Add editor config\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/77\",\n              \"mergedAt\": \"2018-07-20T20:42:10Z\",\n              \"author\": {\n                \"login\": \"isthisnagee\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/4813262?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T20:42:09Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjljMTY1OTRiYTYyZDM5ZTdlYThhZmVkYTdlYWU3Y2FkMTc0OTVhOGE=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/9c16594ba62d39e7ea8afeda7eae7cad17495a8a\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyOTU0Njkw\",\n              \"title\":\n                \"Some updates for font-sizing, accessibility, and animation performance \",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/78\",\n              \"mergedAt\": \"2018-07-20T21:00:37Z\",\n              \"author\": {\n                \"login\": \"danielroot\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/513795?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T21:00:36Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmE2MDUxMDk4MjQ0YTQ0NThlZWZhMTZlNDkwZjA1NDljM2E0NjgwMzY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/a6051098244a4458eefa16e490f0549c3a468036\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyOTY2NTYw\",\n              \"title\": \"MSFT logo on console using gradients\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/79\",\n              \"mergedAt\": \"2018-07-20T22:29:27Z\",\n              \"author\": {\n                \"login\": \"sangeeth96\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/2759499?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T22:29:27Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjJmNDI1ODk5NDNmMDBlYTg5OTBlOWM5NzAyZjcwYzg1MGMwZTI2YTA=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/2f42589943f00ea8990e9c9702f70c850c0e26a0\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyOTc2Njc5\",\n              \"title\": \"show pointer on hover over theme buttons for better ux\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/82\",\n              \"mergedAt\": \"2018-07-20T23:52:33Z\",\n              \"author\": {\n                \"login\": \"pubudu-ranasinghe\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/3397619?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-20T23:52:33Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjkxZGIxMjlkNjc3OGMyYjU5YWQzMGQ0OGNkYzk2OWQ5NDIwMTk4Nzk=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/91db129d6778c2b59ad30d48cdc969d942019879\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyOTg1MjM4\",\n              \"title\": \"Prettier code formatting added... need more tooling?\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/84\",\n              \"mergedAt\": \"2018-07-21T01:58:35Z\",\n              \"author\": {\n                \"login\": \"sangeeth96\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/2759499?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-21T01:58:34Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjZkODhmNDc3MTM4Zjk1YTJmNzdjNzc0NzM4ODkyNDE0MjIwZDRhY2M=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/6d88f477138f95a2f77c774738892414220d4acc\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyOTkyNzEz\",\n              \"title\": \"Improve tooltips\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/85\",\n              \"mergedAt\": \"2018-07-21T08:00:59Z\",\n              \"author\": {\n                \"login\": \"hmnd\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/12853597?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-21T08:00:58Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmU3YzIzNDVkOGI3YTcyMmZlOTQ5ZGE0YjRiNmE2NDE5MjlmNjhkYmQ=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/e7c2345d8b7a722fe949da4b4b6a641929f68dbd\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyOTk1MzQ4\",\n              \"title\": \"Corrected theme item off-by-1 pixel error\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/87\",\n              \"mergedAt\": \"2018-07-21T07:58:58Z\",\n              \"author\": {\n                \"login\": \"crislin2046\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/22254235?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-21T07:58:57Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjNhODEwODExMmUyZDdmMGMzMzliZDliODI0Y2MyYjdmODAxMWZkZjY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/3a8108112e2d7f0c339bd9b824cc2b7f8011fdf6\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAyOTk1NzUw\",\n              \"title\": \"README self-consistency\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/88\",\n              \"mergedAt\": \"2018-07-21T07:58:31Z\",\n              \"author\": {\n                \"login\": \"crislin2046\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/22254235?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-21T07:58:31Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjU4ZmExYmVhMDhiNjc3OWZlZmM4MDhiNDkwNWZmYzdkNjEwMzE5MWM=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/58fa1bea08b6779fefc808b4905ffc7d6103191c\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzMDA3MjAy\",\n              \"title\": \"Fix FOUC issue with root gradient\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/91\",\n              \"mergedAt\": \"2018-07-22T17:24:36Z\",\n              \"author\": {\n                \"login\": \"crislin2046\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/22254235?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"crislin2046\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/22254235?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-22T17:24:36Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmIyMTI2NTM4ZjMxNjQwN2IxZDRiNmEwNDk5NWQ4NjhmYjJjNDJiYjE=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/b2126538f316407b1d4b6a04995d868fb2c42bb1\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzMDE2MDc2\",\n              \"title\":\n                \"Minor design tweaks for footer, CSS improvements, HTML structure improvemetns, a11y\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/92\",\n              \"mergedAt\": \"2018-07-21T17:18:17Z\",\n              \"author\": {\n                \"login\": \"dimanech\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/1180050?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"dimanech\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/1180050?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-21T17:18:17Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjUxZGZiN2M5ZWM4YzQzMDI3ZTcwYTY0YTFkNDI4ZGM0YjhhMmQ1MmI=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/51dfb7c9ec8c43027e70a64a1d428dc4b8a2d52b\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzMDI4ODU4\",\n              \"title\":\n                \"FIX: Add meta description for 100% on Lighthouse SEO audit\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/95\",\n              \"mergedAt\": \"2018-07-22T03:14:36Z\",\n              \"author\": {\n                \"login\": \"plainspace\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/24152?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"plainspace\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/24152?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-22T03:14:35Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjMwMzkyNDM4OTU2YmRmNjE1NTIwOWYxMjEzOTg4MGM0NTcyMWY4ZGI=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/30392438956bdf6155209f12139880c45721f8db\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzMDI5MzU3\",\n              \"title\": \"As above, so below (the logo)\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/96\",\n              \"mergedAt\": \"2018-07-22T17:23:07Z\",\n              \"author\": {\n                \"login\": \"plainspace\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/24152?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-22T17:23:06Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmZkNTljODA2YWI4ZTBkNDkwZmUwZDQ5YTJmMTlmMzkxMjIzN2M3ZDE=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/fd59c806ab8e0d490fe0d49a2f19f3912237c7d1\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzMDQ5NDA4\",\n              \"title\": \"Theme selector improved\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/99\",\n              \"mergedAt\": \"2018-07-22T17:19:29Z\",\n              \"author\": {\n                \"login\": \"kohterai\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/5862751?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"kohterai\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/5862751?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-22T17:19:29Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmQwOTI4YjAyZWU3ZGY2NDhhM2NkM2M3ZjQ4MjJiODM5ZWZmNjBmYmQ=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/d0928b02ee7df648a3cd3c7f4822b839eff60fbd\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzMDU4MTMx\",\n              \"title\": \"Log logo on console using text-shadow\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/101\",\n              \"mergedAt\": \"2018-07-22T17:17:13Z\",\n              \"author\": {\n                \"login\": \"RayPS\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/1941540?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-22T17:17:12Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjUzNzVjODFkZTA2ZTQxNjQ2NWNjMGFjNTAzNDc5Zjk2YmU0YTViMzg=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/5375c81de06e416465cc0ac503479f96be4a5b38\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzMDYzOTg4\",\n              \"title\":\n                \"[A11y] [High Contrast] Added transparent outline to the logo\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/102\",\n              \"mergedAt\": \"2018-07-22T17:15:17Z\",\n              \"author\": {\n                \"login\": \"amitse\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/2761516?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-22T17:15:17Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmIxZDNmOTdhOWQ5YzZlZjQ4ZDNmNTkwMWNkZmNjZjIxZmRhMjE0MzY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/b1d3f97a9d9c6ef48d3f5901cdfccf21fda21436\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzMDcyNjQw\",\n              \"title\": \"Improve HTML markup quality\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/103\",\n              \"mergedAt\": \"2018-07-24T01:34:07Z\",\n              \"author\": {\n                \"login\": \"karol-majewski\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/20233319?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-24T01:34:07Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmY4NGEwMjI3NzA0YjI5YWIyZjYxMmY3OTlkZWNkYTdiN2M5OWI4M2Q=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/f84a0227704b29ab2f612f799decda7b7c99b83d\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzMTYyNzE2\",\n              \"title\": \"Animated gradient text hover\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/105\",\n              \"mergedAt\": \"2018-07-26T20:44:27Z\",\n              \"author\": {\n                \"login\": \"ergum\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/3108788?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-26T20:44:27Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmIyZTczOTNmMjM2MjNjNzU5ZTg5NTkyYjQ2ZTg0YWU2Y2U1MjhiOGQ=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/b2e7393f23623c759e89592b46e84ae6ce528b8d\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzMjQ4ODAz\",\n              \"title\": \"Make lock files consistent\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/107\",\n              \"mergedAt\": \"2018-07-24T01:28:05Z\",\n              \"author\": {\n                \"login\": \"prichodko\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/14926950?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"prichodko\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/14926950?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-24T01:28:05Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjIzM2IxYWQ1NDAwYjllZTY0YjUwN2U4MjBlMjRjYWU2NWFhYjY2MTM=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/233b1ad5400b9ee64b507e820e24cae65aab6613\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzMjU1ODAx\",\n              \"title\": \"Creates a pattern of style guides\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/108\",\n              \"mergedAt\": \"2018-07-24T01:25:00Z\",\n              \"author\": {\n                \"login\": \"LadyCarni\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/6787230?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-24T01:25:00Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmIwZjUyMjliNmRjOWE3NzIzMDA5ZjYxZDQ0OGNkODU5YzI2YWY3NzU=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/b0f5229b6dc9a7723009f61d448cd859c26af775\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzNDA3NTgw\",\n              \"title\": \"The FOUC is back. This fixes it.\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/111\",\n              \"mergedAt\": \"2018-07-25T17:43:05Z\",\n              \"author\": {\n                \"login\": \"crislin2046\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/22254235?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-25T17:43:05Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjAwNmVlZDMxMjFlOWZjODE3YTdkZTI4Y2ZhNzEzMGM5OWM0M2VjOTY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/006eed3121e9fc817a7de28cfa7130c99c43ec96\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzNDA4NDY5\",\n              \"title\": \"Time travel travels too\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/112\",\n              \"mergedAt\": \"2018-07-24T06:12:24Z\",\n              \"author\": {\n                \"login\": \"plainspace\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/24152?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-24T06:12:24Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmI4ODgyYmJkYjlmZTMyYTJjZDY4ZTg3ZGNlYWZkMDdlOTEyOGRmYjY=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/b8882bbdb9fe32a2cd68e87dceafd07e9128dfb6\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzNDA5NTQw\",\n              \"title\": \"Fix link that exits time travel to top page\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/113\",\n              \"mergedAt\": \"2018-07-24T04:53:53Z\",\n              \"author\": {\n                \"login\": \"dvdsgl\",\n                \"avatarUrl\":\n                  \"https://avatars0.githubusercontent.com/u/108197?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-24T04:53:52Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjY4NTVhMGEyY2NhOWM4ZjJkZjZhZGMxNmI3NmMwOGRkMTNjZWYwYmU=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/6855a0a2cca9c8f2df6adc16b76c08dd13cef0be\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzNTI4Nzg0\",\n              \"title\": \"used \\\"_blank\\\" as target for links to PR\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/117\",\n              \"mergedAt\": \"2018-07-24T14:35:20Z\",\n              \"author\": {\n                \"login\": \"nuthinking\",\n                \"avatarUrl\":\n                  \"https://avatars0.githubusercontent.com/u/163635?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-24T14:35:19Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjE0NmI1NzU5MDNiNTg2M2JlMzYwMDE3NGQ1YzU2Mzg3Y2Y3ZWEyNzc=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/146b575903b5863be3600174d5c56387cf7ea277\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzNTM1NTUw\",\n              \"title\": \"Keyboard nav and avoid reload when not needed\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/118\",\n              \"mergedAt\": \"2018-07-24T16:45:50Z\",\n              \"author\": {\n                \"login\": \"nuthinking\",\n                \"avatarUrl\":\n                  \"https://avatars0.githubusercontent.com/u/163635?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-24T16:45:49Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmJhN2QzOTk2ZTk5NDMzZDVmMGU3ZGMyNzAyZDFkZWExN2M2Mzk5NzE=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/ba7d3996e99433d5f0e7dc2702d1dea17c639971\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzNTQwNTU0\",\n              \"title\": \"made HR (h1 bottom border) more subtle\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/119\",\n              \"mergedAt\": \"2018-07-24T16:45:11Z\",\n              \"author\": {\n                \"login\": \"nuthinking\",\n                \"avatarUrl\":\n                  \"https://avatars0.githubusercontent.com/u/163635?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-24T16:45:10Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjBjNjJhZTY1Zjg1ZmE2ZDM3YTUyZjEzODcyNTQ2ZmQ4ZDgwNjA0MDA=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/0c62ae65f85fa6d37a52f13872546fd8d8060400\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjAzNTk4NDI2\",\n              \"title\": \"adds hover state to time travel buttons\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/120\",\n              \"mergedAt\": \"2018-07-26T21:23:01Z\",\n              \"author\": {\n                \"login\": \"dabutvin\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/5168796?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-26T21:23:00Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjE3OWNhMWQ4MDI3ZDIyZmUyNjFlNWI5YTAxNWMyNTc4ZDhjYzdkMmM=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/179ca1d8027d22fe261e5b9a015c2578d8cc7d2c\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjA0MDczMTU2\",\n              \"title\": \"Improved UX of the theme switcher\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/124\",\n              \"mergedAt\": \"2018-07-26T18:31:45Z\",\n              \"author\": {\n                \"login\": \"cpietsch\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/129529?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-26T18:31:44Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjU0NTkwMTYzZDE5MTNiZTU4NDMyM2Q2ZmRkNDI4MGUxNDYyMDhmMzE=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/54590163d1913be584323d6fdd4280e146208f31\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjA0MDk0NjM1\",\n              \"title\": \"Remove unused font family\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/125\",\n              \"mergedAt\": \"2018-07-26T18:29:10Z\",\n              \"author\": {\n                \"login\": \"alex-page\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/19199063?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"alex-page\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/19199063?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-26T18:29:09Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjRiNWI4MjQ4ZmFjMzFkMGNmNDU1OTY0ODk4Y2IxNTcwM2YzZGI1YjM=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/4b5b8248fac31d0cf455964898cb15703f3db5b3\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjA0MTAzMjM2\",\n              \"title\": \"Remove unused css, .theme_item and header h1\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/127\",\n              \"mergedAt\": \"2018-07-26T18:29:48Z\",\n              \"author\": {\n                \"login\": \"alex-page\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/19199063?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-26T18:29:47Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjE4ZTZmY2ZlZDAyMDMxMzczNmY0YjQ4MDBiZjg3M2NkY2VlZDNjMTg=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/18e6fcfed020313736f4b4800bf873cdceed3c18\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjA0MTA4Nzg1\",\n              \"title\": \"Adjusting variables, removing unused vars\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/128\",\n              \"mergedAt\": \"2018-07-26T21:25:04Z\",\n              \"author\": {\n                \"login\": \"alex-page\",\n                \"avatarUrl\":\n                  \"https://avatars1.githubusercontent.com/u/19199063?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-26T21:25:03Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjhlZWRmMWM4ODE5ZjI1Mzk2OTlkZGQ2ZTFjZTg3MDBkYWU4NWVjOTI=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/8eedf1c8819f2539699ddd6e1ce8700dae85ec92\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjA0NDc0MTI0\",\n              \"title\": \"Theme easter egg\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/133\",\n              \"mergedAt\": \"2018-08-06T17:19:03Z\",\n              \"author\": {\n                \"login\": \"d4rekanguok\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/3383539?v=4\"\n              },\n              \"editor\": {\n                \"login\": \"d4rekanguok\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/3383539?v=4\"\n              },\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-08-06T17:19:02Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmUwOGZkOTcxZDJiMGU2MTcwYTMxYjk2NzQ4Zjc4NzQ4NzQxM2ZlMmQ=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/e08fd971d2b0e6170a31b96748f787487413fe2d\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjA0NDk0NTU5\",\n              \"title\": \"seo keywords\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/135\",\n              \"mergedAt\": \"2018-07-31T04:32:53Z\",\n              \"author\": {\n                \"login\": \"adhavalboy\",\n                \"avatarUrl\":\n                  \"https://avatars3.githubusercontent.com/u/16662228?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-07-31T04:32:53Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOmU0YTg4MGJhM2I5ZmU5NjczNDA3NzA4MTFhOWY0YTRmZDhmMjM3NWU=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/e4a880ba3b9fe967340770811a9f4a4fd8f2375e\"\n              }\n            }\n          },\n          {\n            \"node\": {\n              \"id\": \"MDExOlB1bGxSZXF1ZXN0MjA1OTA3ODAz\",\n              \"title\": \"Fix incorrect link color in light theme\",\n              \"url\": \"https://github.com/Microsoft/join-dev-design/pull/147\",\n              \"mergedAt\": \"2018-08-03T11:02:30Z\",\n              \"author\": {\n                \"login\": \"cfrank\",\n                \"avatarUrl\":\n                  \"https://avatars2.githubusercontent.com/u/2308484?v=4\"\n              },\n              \"editor\": null,\n              \"mergeCommit\": {\n                \"committedDate\": \"2018-08-03T11:02:30Z\",\n                \"id\":\n                  \"MDY6Q29tbWl0MTQxNTAzNjgzOjQxMzgyYzdiODc2YjI2MTViNzZiZGM3NDM1NGRkN2IzMTk0YTAyMTc=\",\n                \"tarballUrl\":\n                  \"https://codeload.github.com/Microsoft/join-dev-design/legacy.tar.gz/41382c7b876b2615b76bdc74354dd7b3194a0217\"\n              }\n            }\n          }\n        ]\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/style.css",
    "content": "* {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\nhtml,\nbody {\n  width: 100%;\n  height: 100%;\n}\n\nhtml {\n  background-color: rgba(18, 18, 18, 1);\n}\n\nbody {\n  font-size: 16px;\n  font-family: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica, Tahoma,\n    Arial, sans-serif;\n  line-height: 1.25;\n  color: #bbb;\n}\n\nhr {\n  border: 0;\n  height: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid rgba(255, 255, 255, 0.2);\n  width: 97%;\n  margin-bottom: 1rem;\n}\n\n/* utils  */\n\n.-text--fade {\n  opacity: 0.4;\n}\n\n/* components */\n\n.toast {\n  position: absolute;\n  bottom: 1rem;\n  right: 2rem;\n  font-size: 1rem;\n  padding: 0.75em 1em;\n  max-width: calc(100% - 4rem);\n  border-radius: 0.25rem;\n  color: #bbb;\n  background: #2e2e2e;\n  opacity: 0;\n  transform: translateY(4rem);\n  transition: all 0.3s ease;\n}\n\n.toast.js-inactive {\n  display: none;\n}\n\n.toast--warning {\n  background: #2e2e2e;\n  color: #ffba08;\n}\n\n.toast.js-active {\n  opacity: 1;\n  transform: translateY(0);\n}\n\n.container {\n  position: relative;\n  display: flex;\n  flex-flow: row nowrap;\n  height: 100%;\n}\n\n.display-wrapper {\n  flex: 5;\n}\n\n.display {\n  width: 100%;\n  height: 100%;\n}\n\n.history {\n  position: relative;\n  flex: 1 1 10rem;\n  padding: 2rem;\n  background: rgba(18, 18, 18, 1);\n  color: #bbb;\n  border-left: 1px solid rgba(255, 255, 255, 0.12);\n  overflow: hidden;\n}\n\n.history > a {\n  color: #ffba08;\n  text-decoration: none;\n}\n\n.history > a:hover {\n  color: #05a6f0;\n}\n\n.history__header {\n  font-size: 1.5rem;\n  line-height: 1.3;\n  margin-bottom: 1rem;\n}\n\n.history__controller {\n  position: relative;\n  margin-bottom: 0.5rem;\n  padding: 1rem 0;\n  display: flex;\n  justify-content: space-between;\n}\n\n.history__controller > button {\n  background: rgba(255, 255, 255, 0.1);\n  border-radius: 0.2rem;\n  border: 1px solid transparent;\n  color: #bbb;\n  cursor: pointer;\n  display: inline-block;\n  padding: 0.25em 0.75em;\n  position: relative;\n  transition: all 0.3s ease;\n  transform: translateY(0);\n}\n\n.history__controller > button > span {\n  outline: none;\n  padding: 4px 9px;\n  margin: -4px -9px;\n}\n\n.history__controller > button:hover {\n  border-color: rgba(255, 255, 255, 0.1);\n  box-shadow: 2px 3px #000;\n  transform: translateY(-1px);\n}\n\n.history__controller > button:active {\n  box-shadow: none;\n  transform: translateY(0);\n}\n\n.pr__title {\n  font-size: 1.5rem;\n  margin-bottom: 1rem;\n}\n\n.pr__people-wrapper {\n  position: relative;\n  padding: 0.5rem 0;\n}\n\n.pr__people {\n  position: relative;\n  display: block;\n  margin-bottom: 0.5rem;\n}\n\n.pr__people > * {\n  display: inline-block;\n  vertical-align: middle;\n}\n\n.pr__avatar {\n  position: relative;\n  width: 2rem;\n  height: 2rem;\n  border-radius: 0.25rem;\n  overflow: hidden;\n}\n\n.pr__avatar:before {\n  content: \"/\";\n  position: absolute;\n  display: block;\n  width: 2rem;\n  height: 2rem;\n  line-height: 2rem;\n  color: rgba(255, 255, 255, 0.4);\n  top: 0;\n  left: 0;\n  background: black;\n  text-align: center;\n}\n\n.pr__mergedAt {\n  font-size: 0.9rem;\n  color: rgba(255, 255, 255, 0.5);\n}\n\n.history__link,\n.history__exit {\n  color: #ffba08;\n  text-decoration: none;\n}\n\n.history__link:hover,\n.history__exit:hover {\n  color: #05a6f0;\n}\n\n.history__exit {\n  position: absolute;\n  font-size: 1rem;\n  padding: 0.25rem 0.75rem;\n  top: 2.1rem;\n  right: 1.5rem;\n}\n\n@media only screen and (max-width: 640px) {\n  .container {\n    flex-flow: column nowrap;\n  }\n  .display-wrapper {\n    height: calc(100%-5.5rem);\n    overflow-y: scroll;\n  }\n  .history__count {\n    font-size: 1rem;\n  }\n  .pr__title {\n    font-size: 1.25rem;\n    white-space: nowrap;\n    overflow: hidden;\n    text-overflow: ellipsis;\n  }\n  .people--editor {\n    display: none;\n  }\n}\n"
  },
  {
    "path": "docs/time-travel/time-travel-compiled.js",
    "content": "\"use strict\";\n\nvar _createClass = (function() {\n  function defineProperties(target, props) {\n    for (var i = 0; i < props.length; i++) {\n      var descriptor = props[i];\n      descriptor.enumerable = descriptor.enumerable || false;\n      descriptor.configurable = true;\n      if (\"value\" in descriptor) descriptor.writable = true;\n      Object.defineProperty(target, descriptor.key, descriptor);\n    }\n  }\n  return function(Constructor, protoProps, staticProps) {\n    if (protoProps) defineProperties(Constructor.prototype, protoProps);\n    if (staticProps) defineProperties(Constructor, staticProps);\n    return Constructor;\n  };\n})();\n\nfunction _classCallCheck(instance, Constructor) {\n  if (!(instance instanceof Constructor)) {\n    throw new TypeError(\"Cannot call a class as a function\");\n  }\n}\n\nfunction _asyncToGenerator(fn) {\n  return function() {\n    var gen = fn.apply(this, arguments);\n    return new Promise(function(resolve, reject) {\n      function step(key, arg) {\n        try {\n          var info = gen[key](arg);\n          var value = info.value;\n        } catch (error) {\n          reject(error);\n          return;\n        }\n        if (info.done) {\n          resolve(value);\n        } else {\n          return Promise.resolve(value).then(\n            function(value) {\n              step(\"next\", value);\n            },\n            function(err) {\n              step(\"throw\", err);\n            }\n          );\n        }\n      }\n      return step(\"next\");\n    });\n  };\n}\n\nvar timeTravel = (function() {\n  var _ref = _asyncToGenerator(\n    /*#__PURE__*/ regeneratorRuntime.mark(function _callee() {\n      var DisplayCount,\n        getPullRequests,\n        getEl,\n        $buttonFirst,\n        $buttonNext,\n        $buttonPrevious,\n        $buttonLast,\n        $display,\n        $historyId,\n        $historyMax,\n        $prTitle,\n        $prAuthor,\n        $prAuthorAvatar,\n        $prEditor,\n        $prEditorAvatar,\n        $prMergedAt,\n        $prUrl,\n        updateDisplay,\n        updateHashURL,\n        updateView,\n        pullRequests,\n        count,\n        getHashCount;\n      return regeneratorRuntime.wrap(\n        function _callee$(_context) {\n          while (1) {\n            switch ((_context.prev = _context.next)) {\n              case 0:\n                DisplayCount = (function() {\n                  function DisplayCount() {\n                    var length =\n                      arguments.length > 0 && arguments[0] !== undefined\n                        ? arguments[0]\n                        : 0;\n\n                    _classCallCheck(this, DisplayCount);\n\n                    this.max = length - 1;\n                    this.count = this.max;\n                  }\n\n                  _createClass(DisplayCount, [\n                    {\n                      key: \"validate\",\n                      value: function validate(v) {\n                        var parsedV = parseInt(v, 10);\n                        if (isNaN(parsedV)) {\n                          console.warn(\n                            \"DisplayCount: invalid value (\" +\n                              v +\n                              \" has to be a finite number.)\"\n                          );\n                          return this.max;\n                        }\n                        return parsedV;\n                      }\n                    },\n                    {\n                      key: \"reset\",\n                      value: function reset() {\n                        this.count = 0;\n                        return this.count;\n                      }\n                    },\n                    {\n                      key: \"maximize\",\n                      value: function maximize() {\n                        this.count = this.max;\n                        return this.count;\n                      }\n                    },\n                    {\n                      key: \"limit\",\n                      value: function limit(v) {\n                        v = this.validate(v);\n                        if (v > this.max) v = this.max;\n                        if (v < 0) v = 0;\n                        return v;\n                      }\n                    },\n                    {\n                      key: \"add\",\n                      value: function add() {\n                        var v =\n                          arguments.length > 0 && arguments[0] !== undefined\n                            ? arguments[0]\n                            : 0;\n\n                        v = this.validate(v);\n                        this.count = this.limit(this.count + v);\n                        return this.count;\n                      }\n                    },\n                    {\n                      key: \"jumpTo\",\n                      value: function jumpTo(v) {\n                        v = this.validate(v);\n                        this.count = this.limit(v);\n                        return this.count;\n                      }\n                    }\n                  ]);\n\n                  return DisplayCount;\n                })();\n\n                getPullRequests = function getPullRequests() {\n                  return fetch(\"./index.json\")\n                    .then(function(res) {\n                      return res.json();\n                    })\n                    .then(function(res) {\n                      return res.data.repository.pullRequests.edges;\n                    })\n                    .catch(function(err) {\n                      return console.warn(err);\n                    });\n                };\n\n                getEl = function getEl(id) {\n                  return document.getElementById(id);\n                };\n\n                $buttonFirst = getEl(\"js-button-first\");\n                $buttonNext = getEl(\"js-button-next\");\n                $buttonPrevious = getEl(\"js-button-previous\");\n                $buttonLast = getEl(\"js-button-last\");\n                $display = getEl(\"js-display\");\n                $historyId = getEl(\"js-history-id\");\n                $historyMax = getEl(\"js-history-max\");\n                $prTitle = getEl(\"js-pr-title\");\n                $prAuthor = getEl(\"js-pr-author\");\n                $prAuthorAvatar = getEl(\"js-pr-author-avatar\");\n                $prEditor = getEl(\"js-pr-editor\");\n                $prEditorAvatar = getEl(\"js-pr-editor-avatar\");\n                $prMergedAt = getEl(\"js-pr-mergedAt\");\n                $prUrl = getEl(\"js-pr-url\");\n\n                updateDisplay = function updateDisplay(count) {\n                  var pr = pullRequests[count];\n                  var _pr$node = pr.node,\n                    id = _pr$node.id,\n                    title = _pr$node.title,\n                    author = _pr$node.author,\n                    editor = _pr$node.editor,\n                    mergedAt = _pr$node.mergedAt,\n                    url = _pr$node.url;\n\n                  // https://stackoverflow.com/a/2257295\n\n                  $display.contentWindow.location.replace(\n                    \"./history/\" + id + \"/docs/\"\n                  );\n\n                  $historyId.textContent = count + 1;\n                  $prTitle.textContent = title;\n\n                  $prAuthor.textContent = author.login;\n                  $prAuthorAvatar.src = author.avatarUrl;\n                  $prAuthorAvatar.setAttribute(\n                    \"alt\",\n                    \"Author: \" + author.login\n                  );\n\n                  if (editor) {\n                    $prEditor.textContent = editor && editor.login;\n                    $prEditorAvatar.src = editor.avatarUrl;\n                    $prAuthorAvatar.setAttribute(\n                      \"alt\",\n                      \"Author: \" + author.login\n                    );\n                  } else {\n                    $prEditor.textContent = \"No editor\";\n                    $prEditorAvatar.src = \"\";\n                    $prAuthorAvatar.setAttribute(\"alt\", \"No editor\");\n                  }\n\n                  $prMergedAt.textContent = \"Merged at \" + mergedAt;\n                  $prUrl.href = url;\n                };\n\n                updateHashURL = function updateHashURL(hash) {\n                  window.history.pushState(null, null, \"#\" + (hash + 1));\n                };\n\n                updateView = function updateView(currentCount) {\n                  updateHashURL(currentCount);\n                  updateDisplay(currentCount);\n                };\n\n                _context.next = 22;\n                return getPullRequests();\n\n              case 22:\n                pullRequests = _context.sent;\n                count = new DisplayCount(pullRequests.length);\n\n                // get hash link\n\n                getHashCount = function getHashCount() {\n                  if (window.location.hash)\n                    return window.location.hash.split(\"#\")[1];\n                  return null;\n                };\n                // pop back\n\n                window.onpopstate = function() {\n                  console.log(\"state popped: \" + window.location.hash);\n                  updateDisplay(count.jumpTo(getHashCount()));\n                };\n\n                // start\n                $historyMax.textContent = count.max + 1;\n                updateView(count.jumpTo(getHashCount()));\n\n                // button control\n                $buttonFirst.onclick = function() {\n                  updateView(count.reset());\n                };\n                $buttonNext.onclick = function() {\n                  updateView(count.add(1));\n                };\n                $buttonPrevious.onclick = function() {\n                  updateView(count.add(-1));\n                };\n                $buttonLast.onclick = function() {\n                  updateView(count.maximize());\n                };\n\n              case 32:\n              case \"end\":\n                return _context.stop();\n            }\n          }\n        },\n        _callee,\n        undefined\n      );\n    })\n  );\n\n  return function timeTravel() {\n    return _ref.apply(this, arguments);\n  };\n})();\n\nwindow.onload = timeTravel;\n\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInRpbWUtdHJhdmVsLmpzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7O0FBQUEsSUFBTTtBQUFBLHFFQUFhO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUNYLHdCQURXO0FBRWYsc0NBQXdCO0FBQUEsb0JBQVosTUFBWSx1RUFBSCxDQUFHOztBQUFBOztBQUN0QixxQkFBSyxHQUFMLEdBQVcsU0FBUyxDQUFwQjtBQUNBLHFCQUFLLEtBQUwsR0FBYSxLQUFLLEdBQWxCO0FBQ0Q7O0FBTGM7QUFBQTtBQUFBLHlDQU1OLENBTk0sRUFNSDtBQUNWLHNCQUFNLFVBQVUsU0FBUyxDQUFULEVBQVksRUFBWixDQUFoQjtBQUNBLHNCQUFJLE1BQU0sT0FBTixDQUFKLEVBQW9CO0FBQ2xCLDRCQUFRLElBQVIsbUNBQ2tDLENBRGxDO0FBR0EsMkJBQU8sS0FBSyxHQUFaO0FBQ0Q7QUFDRCx5QkFBTyxPQUFQO0FBQ0Q7QUFmYztBQUFBO0FBQUEsd0NBZ0JQO0FBQ04sdUJBQUssS0FBTCxHQUFhLENBQWI7QUFDQSx5QkFBTyxLQUFLLEtBQVo7QUFDRDtBQW5CYztBQUFBO0FBQUEsMkNBb0JKO0FBQ1QsdUJBQUssS0FBTCxHQUFhLEtBQUssR0FBbEI7QUFDQSx5QkFBTyxLQUFLLEtBQVo7QUFDRDtBQXZCYztBQUFBO0FBQUEsc0NBd0JULENBeEJTLEVBd0JOO0FBQ1Asc0JBQUksS0FBSyxRQUFMLENBQWMsQ0FBZCxDQUFKO0FBQ0Esc0JBQUksSUFBSSxLQUFLLEdBQWIsRUFBa0IsSUFBSSxLQUFLLEdBQVQ7QUFDbEIsc0JBQUksSUFBSSxDQUFSLEVBQVcsSUFBSSxDQUFKO0FBQ1gseUJBQU8sQ0FBUDtBQUNEO0FBN0JjO0FBQUE7QUFBQSxzQ0E4Qko7QUFBQSxzQkFBUCxDQUFPLHVFQUFILENBQUc7O0FBQ1Qsc0JBQUksS0FBSyxRQUFMLENBQWMsQ0FBZCxDQUFKO0FBQ0EsdUJBQUssS0FBTCxHQUFhLEtBQUssS0FBTCxDQUFXLEtBQUssS0FBTCxHQUFhLENBQXhCLENBQWI7QUFDQSx5QkFBTyxLQUFLLEtBQVo7QUFDRDtBQWxDYztBQUFBO0FBQUEsdUNBbUNSLENBbkNRLEVBbUNMO0FBQ1Isc0JBQUksS0FBSyxRQUFMLENBQWMsQ0FBZCxDQUFKO0FBQ0EsdUJBQUssS0FBTCxHQUFhLEtBQUssS0FBTCxDQUFXLENBQVgsQ0FBYjtBQUNBLHlCQUFPLEtBQUssS0FBWjtBQUNEO0FBdkNjOztBQUFBO0FBQUE7O0FBMENYLDJCQTFDVyxHQTBDTyxTQUFsQixlQUFrQjtBQUFBLHFCQUN0QixNQUFNLGNBQU4sRUFDRyxJQURILENBQ1E7QUFBQSx1QkFBTyxJQUFJLElBQUosRUFBUDtBQUFBLGVBRFIsRUFFRyxJQUZILENBRVE7QUFBQSx1QkFBTyxJQUFJLElBQUosQ0FBUyxVQUFULENBQW9CLFlBQXBCLENBQWlDLEtBQXhDO0FBQUEsZUFGUixFQUdHLEtBSEgsQ0FHUztBQUFBLHVCQUFPLFFBQVEsSUFBUixDQUFhLEdBQWIsQ0FBUDtBQUFBLGVBSFQsQ0FEc0I7QUFBQSxhQTFDUDs7QUFnRFgsaUJBaERXLEdBZ0RILFNBQVIsS0FBUTtBQUFBLHFCQUFNLFNBQVMsY0FBVCxDQUF3QixFQUF4QixDQUFOO0FBQUEsYUFoREc7O0FBa0RYLHdCQWxEVyxHQWtESSxNQUFNLGlCQUFOLENBbERKO0FBbURYLHVCQW5EVyxHQW1ERyxNQUFNLGdCQUFOLENBbkRIO0FBb0RYLDJCQXBEVyxHQW9ETyxNQUFNLG9CQUFOLENBcERQO0FBcURYLHVCQXJEVyxHQXFERyxNQUFNLGdCQUFOLENBckRIO0FBdURYLG9CQXZEVyxHQXVEQSxNQUFNLFlBQU4sQ0F2REE7QUF3RFgsc0JBeERXLEdBd0RFLE1BQU0sZUFBTixDQXhERjtBQXlEWCx1QkF6RFcsR0F5REcsTUFBTSxnQkFBTixDQXpESDtBQTJEWCxvQkEzRFcsR0EyREEsTUFBTSxhQUFOLENBM0RBO0FBNERYLHFCQTVEVyxHQTREQyxNQUFNLGNBQU4sQ0E1REQ7QUE2RFgsMkJBN0RXLEdBNkRPLE1BQU0scUJBQU4sQ0E3RFA7QUE4RFgscUJBOURXLEdBOERDLE1BQU0sY0FBTixDQTlERDtBQStEWCwyQkEvRFcsR0ErRE8sTUFBTSxxQkFBTixDQS9EUDtBQWdFWCx1QkFoRVcsR0FnRUcsTUFBTSxnQkFBTixDQWhFSDtBQWlFWCxrQkFqRVcsR0FpRUYsTUFBTSxXQUFOLENBakVFOztBQW1FWCx5QkFuRVcsR0FtRUssU0FBaEIsYUFBZ0IsUUFBUztBQUM3QixrQkFBTSxLQUFLLGFBQWEsS0FBYixDQUFYO0FBRDZCLDZCQUV3QixHQUFHLElBRjNCO0FBQUEsa0JBRXJCLEVBRnFCLFlBRXJCLEVBRnFCO0FBQUEsa0JBRWpCLEtBRmlCLFlBRWpCLEtBRmlCO0FBQUEsa0JBRVYsTUFGVSxZQUVWLE1BRlU7QUFBQSxrQkFFRixNQUZFLFlBRUYsTUFGRTtBQUFBLGtCQUVNLFFBRk4sWUFFTSxRQUZOO0FBQUEsa0JBRWdCLEdBRmhCLFlBRWdCLEdBRmhCOztBQUk3Qjs7QUFDQSx1QkFBUyxhQUFULENBQXVCLFFBQXZCLENBQWdDLE9BQWhDLGdCQUFxRCxFQUFyRDs7QUFFQSx5QkFBVyxXQUFYLEdBQXlCLFFBQVEsQ0FBakM7QUFDQSx1QkFBUyxXQUFULEdBQXVCLEtBQXZCOztBQUVBLHdCQUFVLFdBQVYsR0FBd0IsT0FBTyxLQUEvQjtBQUNBLDhCQUFnQixHQUFoQixHQUFzQixPQUFPLFNBQTdCO0FBQ0EsOEJBQWdCLFlBQWhCLENBQTZCLEtBQTdCLGVBQStDLE9BQU8sS0FBdEQ7O0FBRUEsa0JBQUksTUFBSixFQUFZO0FBQ1YsMEJBQVUsV0FBVixHQUF3QixVQUFVLE9BQU8sS0FBekM7QUFDQSxnQ0FBZ0IsR0FBaEIsR0FBc0IsT0FBTyxTQUE3QjtBQUNBLGdDQUFnQixZQUFoQixDQUE2QixLQUE3QixlQUErQyxPQUFPLEtBQXREO0FBQ0QsZUFKRCxNQUlPO0FBQ0wsMEJBQVUsV0FBVixHQUF3QixXQUF4QjtBQUNBLGdDQUFnQixHQUFoQixHQUFzQixFQUF0QjtBQUNBLGdDQUFnQixZQUFoQixDQUE2QixLQUE3QjtBQUNEOztBQUVELDBCQUFZLFdBQVosa0JBQXVDLFFBQXZDO0FBQ0EscUJBQU8sSUFBUCxHQUFjLEdBQWQ7QUFDRCxhQTdGZ0I7O0FBK0ZYLHlCQS9GVyxHQStGSyxTQUFoQixhQUFnQixPQUFRO0FBQzVCLHFCQUFPLE9BQVAsQ0FBZSxTQUFmLENBQXlCLElBQXpCLEVBQStCLElBQS9CLFNBQXlDLE9BQU8sQ0FBaEQ7QUFDRCxhQWpHZ0I7O0FBbUdYLHNCQW5HVyxHQW1HRSxTQUFiLFVBQWEsZUFBZ0I7QUFDakMsNEJBQWMsWUFBZDtBQUNBLDRCQUFjLFlBQWQ7QUFDRCxhQXRHZ0I7O0FBQUE7QUFBQSxtQkF3R1UsaUJBeEdWOztBQUFBO0FBd0dYLHdCQXhHVztBQXlHWCxpQkF6R1csR0F5R0gsSUFBSSxZQUFKLENBQWlCLGFBQWEsTUFBOUIsQ0F6R0c7O0FBMkdqQjs7QUFDTSx3QkE1R1csR0E0R0ksU0FBZixZQUFlLEdBQU07QUFDekIsa0JBQUksT0FBTyxRQUFQLENBQWdCLElBQXBCLEVBQTBCLE9BQU8sT0FBTyxRQUFQLENBQWdCLElBQWhCLENBQXFCLEtBQXJCLENBQTJCLEdBQTNCLEVBQWdDLENBQWhDLENBQVA7QUFDMUIscUJBQU8sSUFBUDtBQUNELGFBL0dnQjtBQWdIakI7OztBQUNBLG1CQUFPLFVBQVAsR0FBb0IsWUFBTTtBQUN4QixzQkFBUSxHQUFSLG9CQUE2QixPQUFPLFFBQVAsQ0FBZ0IsSUFBN0M7QUFDQSw0QkFBYyxNQUFNLE1BQU4sQ0FBYSxjQUFiLENBQWQ7QUFDRCxhQUhEOztBQUtBO0FBQ0Esd0JBQVksV0FBWixHQUEwQixNQUFNLEdBQU4sR0FBWSxDQUF0QztBQUNBLHVCQUFXLE1BQU0sTUFBTixDQUFhLGNBQWIsQ0FBWDs7QUFFQTtBQUNBLHlCQUFhLE9BQWIsR0FBdUIsWUFBTTtBQUMzQix5QkFBVyxNQUFNLEtBQU4sRUFBWDtBQUNELGFBRkQ7QUFHQSx3QkFBWSxPQUFaLEdBQXNCLFlBQU07QUFDMUIseUJBQVcsTUFBTSxHQUFOLENBQVUsQ0FBVixDQUFYO0FBQ0QsYUFGRDtBQUdBLDRCQUFnQixPQUFoQixHQUEwQixZQUFNO0FBQzlCLHlCQUFXLE1BQU0sR0FBTixDQUFVLENBQUMsQ0FBWCxDQUFYO0FBQ0QsYUFGRDtBQUdBLHdCQUFZLE9BQVosR0FBc0IsWUFBTTtBQUMxQix5QkFBVyxNQUFNLFFBQU4sRUFBWDtBQUNELGFBRkQ7O0FBcElpQjtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQSxHQUFiOztBQUFBO0FBQUE7QUFBQTtBQUFBLEdBQU47O0FBeUlBLE9BQU8sTUFBUCxHQUFnQixVQUFoQiIsImZpbGUiOiJ0aW1lLXRyYXZlbC1jb21waWxlZC5qcyIsInNvdXJjZXNDb250ZW50IjpbImNvbnN0IHRpbWVUcmF2ZWwgPSBhc3luYyAoKSA9PiB7XG4gIGNsYXNzIERpc3BsYXlDb3VudCB7XG4gICAgY29uc3RydWN0b3IobGVuZ3RoID0gMCkge1xuICAgICAgdGhpcy5tYXggPSBsZW5ndGggLSAxO1xuICAgICAgdGhpcy5jb3VudCA9IHRoaXMubWF4O1xuICAgIH1cbiAgICB2YWxpZGF0ZSh2KSB7XG4gICAgICBjb25zdCBwYXJzZWRWID0gcGFyc2VJbnQodiwgMTApO1xuICAgICAgaWYgKGlzTmFOKHBhcnNlZFYpKSB7XG4gICAgICAgIGNvbnNvbGUud2FybihcbiAgICAgICAgICBgRGlzcGxheUNvdW50OiBpbnZhbGlkIHZhbHVlICgke3Z9IGhhcyB0byBiZSBhIGZpbml0ZSBudW1iZXIuKWBcbiAgICAgICAgKTtcbiAgICAgICAgcmV0dXJuIHRoaXMubWF4O1xuICAgICAgfVxuICAgICAgcmV0dXJuIHBhcnNlZFY7XG4gICAgfVxuICAgIHJlc2V0KCkge1xuICAgICAgdGhpcy5jb3VudCA9IDA7XG4gICAgICByZXR1cm4gdGhpcy5jb3VudDtcbiAgICB9XG4gICAgbWF4aW1pemUoKSB7XG4gICAgICB0aGlzLmNvdW50ID0gdGhpcy5tYXg7XG4gICAgICByZXR1cm4gdGhpcy5jb3VudDtcbiAgICB9XG4gICAgbGltaXQodikge1xuICAgICAgdiA9IHRoaXMudmFsaWRhdGUodik7XG4gICAgICBpZiAodiA+IHRoaXMubWF4KSB2ID0gdGhpcy5tYXg7XG4gICAgICBpZiAodiA8IDApIHYgPSAwO1xuICAgICAgcmV0dXJuIHY7XG4gICAgfVxuICAgIGFkZCh2ID0gMCkge1xuICAgICAgdiA9IHRoaXMudmFsaWRhdGUodik7XG4gICAgICB0aGlzLmNvdW50ID0gdGhpcy5saW1pdCh0aGlzLmNvdW50ICsgdik7XG4gICAgICByZXR1cm4gdGhpcy5jb3VudDtcbiAgICB9XG4gICAganVtcFRvKHYpIHtcbiAgICAgIHYgPSB0aGlzLnZhbGlkYXRlKHYpO1xuICAgICAgdGhpcy5jb3VudCA9IHRoaXMubGltaXQodik7XG4gICAgICByZXR1cm4gdGhpcy5jb3VudDtcbiAgICB9XG4gIH1cblxuICBjb25zdCBnZXRQdWxsUmVxdWVzdHMgPSAoKSA9PlxuICAgIGZldGNoKFwiLi9pbmRleC5qc29uXCIpXG4gICAgICAudGhlbihyZXMgPT4gcmVzLmpzb24oKSlcbiAgICAgIC50aGVuKHJlcyA9PiByZXMuZGF0YS5yZXBvc2l0b3J5LnB1bGxSZXF1ZXN0cy5lZGdlcylcbiAgICAgIC5jYXRjaChlcnIgPT4gY29uc29sZS53YXJuKGVycikpO1xuXG4gIGNvbnN0IGdldEVsID0gaWQgPT4gZG9jdW1lbnQuZ2V0RWxlbWVudEJ5SWQoaWQpO1xuXG4gIGNvbnN0ICRidXR0b25GaXJzdCA9IGdldEVsKFwianMtYnV0dG9uLWZpcnN0XCIpO1xuICBjb25zdCAkYnV0dG9uTmV4dCA9IGdldEVsKFwianMtYnV0dG9uLW5leHRcIik7XG4gIGNvbnN0ICRidXR0b25QcmV2aW91cyA9IGdldEVsKFwianMtYnV0dG9uLXByZXZpb3VzXCIpO1xuICBjb25zdCAkYnV0dG9uTGFzdCA9IGdldEVsKFwianMtYnV0dG9uLWxhc3RcIik7XG5cbiAgY29uc3QgJGRpc3BsYXkgPSBnZXRFbChcImpzLWRpc3BsYXlcIik7XG4gIGNvbnN0ICRoaXN0b3J5SWQgPSBnZXRFbChcImpzLWhpc3RvcnktaWRcIik7XG4gIGNvbnN0ICRoaXN0b3J5TWF4ID0gZ2V0RWwoXCJqcy1oaXN0b3J5LW1heFwiKTtcblxuICBjb25zdCAkcHJUaXRsZSA9IGdldEVsKFwianMtcHItdGl0bGVcIik7XG4gIGNvbnN0ICRwckF1dGhvciA9IGdldEVsKFwianMtcHItYXV0aG9yXCIpO1xuICBjb25zdCAkcHJBdXRob3JBdmF0YXIgPSBnZXRFbChcImpzLXByLWF1dGhvci1hdmF0YXJcIik7XG4gIGNvbnN0ICRwckVkaXRvciA9IGdldEVsKFwianMtcHItZWRpdG9yXCIpO1xuICBjb25zdCAkcHJFZGl0b3JBdmF0YXIgPSBnZXRFbChcImpzLXByLWVkaXRvci1hdmF0YXJcIik7XG4gIGNvbnN0ICRwck1lcmdlZEF0ID0gZ2V0RWwoXCJqcy1wci1tZXJnZWRBdFwiKTtcbiAgY29uc3QgJHByVXJsID0gZ2V0RWwoXCJqcy1wci11cmxcIik7XG5cbiAgY29uc3QgdXBkYXRlRGlzcGxheSA9IGNvdW50ID0+IHtcbiAgICBjb25zdCBwciA9IHB1bGxSZXF1ZXN0c1tjb3VudF07XG4gICAgY29uc3QgeyBpZCwgdGl0bGUsIGF1dGhvciwgZWRpdG9yLCBtZXJnZWRBdCwgdXJsIH0gPSBwci5ub2RlO1xuXG4gICAgLy8gaHR0cHM6Ly9zdGFja292ZXJmbG93LmNvbS9hLzIyNTcyOTVcbiAgICAkZGlzcGxheS5jb250ZW50V2luZG93LmxvY2F0aW9uLnJlcGxhY2UoYC4vaGlzdG9yeS8ke2lkfS9kb2NzL2ApO1xuXG4gICAgJGhpc3RvcnlJZC50ZXh0Q29udGVudCA9IGNvdW50ICsgMTtcbiAgICAkcHJUaXRsZS50ZXh0Q29udGVudCA9IHRpdGxlO1xuXG4gICAgJHByQXV0aG9yLnRleHRDb250ZW50ID0gYXV0aG9yLmxvZ2luO1xuICAgICRwckF1dGhvckF2YXRhci5zcmMgPSBhdXRob3IuYXZhdGFyVXJsO1xuICAgICRwckF1dGhvckF2YXRhci5zZXRBdHRyaWJ1dGUoXCJhbHRcIiwgYEF1dGhvcjogJHthdXRob3IubG9naW59YCk7XG5cbiAgICBpZiAoZWRpdG9yKSB7XG4gICAgICAkcHJFZGl0b3IudGV4dENvbnRlbnQgPSBlZGl0b3IgJiYgZWRpdG9yLmxvZ2luO1xuICAgICAgJHByRWRpdG9yQXZhdGFyLnNyYyA9IGVkaXRvci5hdmF0YXJVcmw7XG4gICAgICAkcHJBdXRob3JBdmF0YXIuc2V0QXR0cmlidXRlKFwiYWx0XCIsIGBBdXRob3I6ICR7YXV0aG9yLmxvZ2lufWApO1xuICAgIH0gZWxzZSB7XG4gICAgICAkcHJFZGl0b3IudGV4dENvbnRlbnQgPSBcIk5vIGVkaXRvclwiO1xuICAgICAgJHByRWRpdG9yQXZhdGFyLnNyYyA9IFwiXCI7XG4gICAgICAkcHJBdXRob3JBdmF0YXIuc2V0QXR0cmlidXRlKFwiYWx0XCIsIGBObyBlZGl0b3JgKTtcbiAgICB9XG5cbiAgICAkcHJNZXJnZWRBdC50ZXh0Q29udGVudCA9IGBNZXJnZWQgYXQgJHttZXJnZWRBdH1gO1xuICAgICRwclVybC5ocmVmID0gdXJsO1xuICB9O1xuXG4gIGNvbnN0IHVwZGF0ZUhhc2hVUkwgPSBoYXNoID0+IHtcbiAgICB3aW5kb3cuaGlzdG9yeS5wdXNoU3RhdGUobnVsbCwgbnVsbCwgYCMke2hhc2ggKyAxfWApO1xuICB9O1xuXG4gIGNvbnN0IHVwZGF0ZVZpZXcgPSBjdXJyZW50Q291bnQgPT4ge1xuICAgIHVwZGF0ZUhhc2hVUkwoY3VycmVudENvdW50KTtcbiAgICB1cGRhdGVEaXNwbGF5KGN1cnJlbnRDb3VudCk7XG4gIH07XG5cbiAgY29uc3QgcHVsbFJlcXVlc3RzID0gYXdhaXQgZ2V0UHVsbFJlcXVlc3RzKCk7XG4gIGNvbnN0IGNvdW50ID0gbmV3IERpc3BsYXlDb3VudChwdWxsUmVxdWVzdHMubGVuZ3RoKTtcblxuICAvLyBnZXQgaGFzaCBsaW5rXG4gIGNvbnN0IGdldEhhc2hDb3VudCA9ICgpID0+IHtcbiAgICBpZiAod2luZG93LmxvY2F0aW9uLmhhc2gpIHJldHVybiB3aW5kb3cubG9jYXRpb24uaGFzaC5zcGxpdChcIiNcIilbMV07XG4gICAgcmV0dXJuIG51bGw7XG4gIH07XG4gIC8vIHBvcCBiYWNrXG4gIHdpbmRvdy5vbnBvcHN0YXRlID0gKCkgPT4ge1xuICAgIGNvbnNvbGUubG9nKGBzdGF0ZSBwb3BwZWQ6ICR7d2luZG93LmxvY2F0aW9uLmhhc2h9YCk7XG4gICAgdXBkYXRlRGlzcGxheShjb3VudC5qdW1wVG8oZ2V0SGFzaENvdW50KCkpKTtcbiAgfTtcblxuICAvLyBzdGFydFxuICAkaGlzdG9yeU1heC50ZXh0Q29udGVudCA9IGNvdW50Lm1heCArIDE7XG4gIHVwZGF0ZVZpZXcoY291bnQuanVtcFRvKGdldEhhc2hDb3VudCgpKSk7XG5cbiAgLy8gYnV0dG9uIGNvbnRyb2xcbiAgJGJ1dHRvbkZpcnN0Lm9uY2xpY2sgPSAoKSA9PiB7XG4gICAgdXBkYXRlVmlldyhjb3VudC5yZXNldCgpKTtcbiAgfTtcbiAgJGJ1dHRvbk5leHQub25jbGljayA9ICgpID0+IHtcbiAgICB1cGRhdGVWaWV3KGNvdW50LmFkZCgxKSk7XG4gIH07XG4gICRidXR0b25QcmV2aW91cy5vbmNsaWNrID0gKCkgPT4ge1xuICAgIHVwZGF0ZVZpZXcoY291bnQuYWRkKC0xKSk7XG4gIH07XG4gICRidXR0b25MYXN0Lm9uY2xpY2sgPSAoKSA9PiB7XG4gICAgdXBkYXRlVmlldyhjb3VudC5tYXhpbWl6ZSgpKTtcbiAgfTtcbn07XG5cbndpbmRvdy5vbmxvYWQgPSB0aW1lVHJhdmVsO1xuIl19\n"
  },
  {
    "path": "docs/time-travel/time-travel.js",
    "content": "/**\n * compile with `babel`, sourcemap inline & preset `babel-preset-env`.\n */\nconst timeTravel = async () => {\n  class Toast {\n    constructor(parent) {\n      const $parent = parent || document.body;\n      const $toast = document.createElement(\"div\");\n\n      $toast.classList.add(\"toast\", \"js-inactive\");\n      $toast.id = \"js-toast\";\n      $parent.appendChild($toast);\n\n      this.toast = $toast;\n      this.currentTimer = null;\n    }\n    show(msg, typeClass) {\n      const $toast = this.toast;\n      $toast.classList.remove(\"js-inactive\");\n\n      setTimeout(() => {\n        $toast.textContent = msg;\n        $toast.classList.add(typeClass, \"js-active\");\n      }, 16);\n    }\n    hide(typeClass) {\n      const $toast = this.toast;\n      $toast.classList.remove(typeClass, \"js-active\");\n\n      setTimeout(() => {\n        $toast.classList.add(\"js-inactive\");\n        $toast.textContent = \"\";\n      }, 300);\n    }\n    send(options) {\n      if (!!this.currentTimer) clearTimeout(this.currentTimer);\n\n      const _options = Object.assign(\n        { duration: 2000, type: \"default\" },\n        options\n      );\n      const { msg, type, duration } = _options;\n      if (typeof msg !== \"string\") {\n        console.error(\n          `Error: in \\`sendToast({msg, duration})\\`,\\`msg\\` has to be a string. Got ${msg} instead`\n        );\n        return;\n      }\n      if (typeof duration !== \"number\") {\n        console.error(\n          `Error: in \\`sendToast({msg, duration})\\`,\\`duration\\` has to be a number. Got ${duration} instead`\n        );\n        return;\n      }\n\n      const typeClass = `toast--${type}`;\n      this.show(msg, typeClass);\n\n      this.currentTimer = setTimeout(() => {\n        this.hide(typeClass);\n      }, duration);\n    }\n  }\n\n  class DisplayCount {\n    constructor(length = 0) {\n      this.max = length - 1;\n      this.count = this.max;\n    }\n    validate(v) {\n      const parsedV = parseInt(v, 10);\n      if (isNaN(parsedV)) {\n        console.warn(\n          `DisplayCount: invalid value (${v} has to be a finite number.)`\n        );\n        return this.max;\n      }\n      return parsedV;\n    }\n    reset() {\n      this.count = 0;\n      return this.count;\n    }\n    maximize() {\n      this.count = this.max;\n      return this.count;\n    }\n    limit(v) {\n      v = this.validate(v);\n      if (v > this.max) v = this.max;\n      if (v < 0) v = 0;\n      return v;\n    }\n    add(v = 0) {\n      v = this.validate(v);\n      this.count = this.limit(this.count + v);\n      return this.count;\n    }\n    jumpTo(v) {\n      v = this.validate(v);\n      this.count = this.limit(v);\n      return this.count;\n    }\n    isFirst() {\n      return this.count === 0;\n    }\n    isLast() {\n      return this.count === this.max;\n    }\n  }\n\n  const getPullRequests = () =>\n    fetch(\"./index.json\")\n      .then(res => res.json())\n      .then(res => res.data.repository.pullRequests.edges)\n      .catch(err => console.warn(err));\n\n  const getEl = id => document.getElementById(id);\n\n  const $buttonFirst = getEl(\"js-button-first\");\n  const $buttonNext = getEl(\"js-button-next\");\n  const $buttonPrevious = getEl(\"js-button-previous\");\n  const $buttonLast = getEl(\"js-button-last\");\n\n  const $display = getEl(\"js-display\");\n  const $history = getEl(\"js-history\");\n  const $historyId = getEl(\"js-history-id\");\n  const $historyMax = getEl(\"js-history-max\");\n\n  const $prTitle = getEl(\"js-pr-title\");\n  const $prAuthor = getEl(\"js-pr-author\");\n  const $prAuthorAvatar = getEl(\"js-pr-author-avatar\");\n  const $prEditor = getEl(\"js-pr-editor\");\n  const $prEditorAvatar = getEl(\"js-pr-editor-avatar\");\n  const $prMergedAt = getEl(\"js-pr-mergedAt\");\n  const $prUrl = getEl(\"js-pr-url\");\n\n  const onKeyPress = (key, callback) => {\n    window.addEventListener(\"keyup\", e => {\n      if (e.key === key) {\n        callback();\n      }\n    });\n    return callback;\n  };\n\n  // handle links inside iframe\n  const handleInnerLinks = iframe => {\n    iframe.onload = () => {\n      const iframeDoc = iframe.contentWindow.document || iframe.contentDocument;\n      const innerLinks = Array.from(iframeDoc.querySelectorAll(\"a\"));\n\n      if (innerLinks.length === 0) return;\n\n      innerLinks.forEach($link => {\n        // disable time travel\n        if ($link.href.includes(\"time-travel\")) {\n          $link.onclick = e => {\n            e.preventDefault();\n\n            toast.send({\n              msg: `⚠️ Can't time travel while traveling time.`,\n              type: `warning`,\n              duration: 3000\n            });\n          };\n        }\n        // open external link in a new browser window\n        if ($link.href.includes(\"http\")) {\n          $link.setAttribute(\"target\", \"_blank\");\n        }\n      });\n    };\n  };\n\n  const updateDisplay = count => {\n    const pr = pullRequests[count];\n    const { id, title, author, editor, mergedAt, url } = pr.node;\n\n    // https://stackoverflow.com/a/2257295\n    $display.contentWindow.location.replace(`./history/${id}/docs/`);\n    handleInnerLinks($display);\n\n    $historyId.textContent = count + 1;\n    $prTitle.textContent = title;\n\n    $prAuthor.textContent = author.login;\n    $prAuthorAvatar.src = author.avatarUrl;\n    $prAuthorAvatar.setAttribute(\"alt\", `Author: ${author.login}`);\n\n    if (editor) {\n      $prEditor.textContent = editor && editor.login;\n      $prEditorAvatar.src = editor.avatarUrl;\n      $prAuthorAvatar.setAttribute(\"alt\", `Author: ${author.login}`);\n    } else {\n      $prEditor.textContent = \"No editor\";\n      $prEditorAvatar.src = \"\";\n      $prAuthorAvatar.setAttribute(\"alt\", `No editor`);\n    }\n\n    $prMergedAt.textContent = `Merged at ${mergedAt}`;\n    $prUrl.href = url;\n  };\n\n  const updateHashURL = hash => {\n    window.history.pushState(null, null, `#${hash + 1}`);\n  };\n\n  const updateView = currentCount => {\n    updateHashURL(currentCount);\n    updateDisplay(currentCount);\n  };\n\n  const pullRequests = await getPullRequests();\n  const count = new DisplayCount(pullRequests.length);\n\n  // get hash link\n  const getHashCount = () => {\n    if (window.location.hash) return window.location.hash.split(\"#\")[1];\n    return null;\n  };\n  // pop back\n  window.onpopstate = () => {\n    console.log(`state popped: ${window.location.hash}`);\n    updateDisplay(count.jumpTo(getHashCount()));\n  };\n\n  // start\n  $historyMax.textContent = count.max + 1;\n  updateView(count.jumpTo(getHashCount()));\n\n  // placeholder for toast\n  toast = new Toast($history);\n\n  // button control\n  $buttonFirst.onclick = () => {\n    if (!count.isFirst()) {\n      updateView(count.reset());\n    }\n  };\n  $buttonPrevious.onclick = onKeyPress(\"ArrowLeft\", () => {\n    if (!count.isFirst()) {\n      updateView(count.add(-1));\n    }\n  });\n  $buttonNext.onclick = onKeyPress(\"ArrowRight\", () => {\n    if (!count.isLast()) {\n      updateView(count.add(1));\n    }\n  });\n  $buttonLast.onclick = () => {\n    if (!count.isLast()) {\n      updateView(count.maximize());\n    }\n  };\n};\n\nwindow.onload = timeTravel;\n"
  },
  {
    "path": "example.env",
    "content": "# Github access token https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/\nACCESS_TOKEN=***************************"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"join-dev-design\",\n  \"version\": \"1.0.0\",\n  \"description\": \"This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.\",\n  \"main\": \"index.js\",\n  \"directories\": {\n    \"doc\": \"docs\"\n  },\n  \"scripts\": {\n    \"start\": \"live-server docs\",\n    \"precommit\": \"pretty-quick --staged\",\n    \"prettier\": \"prettier\",\n    \"build-timetravel\": \"node time-travel/build.js\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/Microsoft/join-dev-design.git\"\n  },\n  \"author\": \"David Siegel <dasiege@microsoft.com>\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Microsoft/join-dev-design/issues\"\n  },\n  \"homepage\": \"https://github.com/Microsoft/join-dev-design#readme\",\n  \"devDependencies\": {\n    \"serve\": \"^9.2.0\",\n    \"unzip\": \"^0.1.11\"\n  },\n  \"dependencies\": {\n    \"dotenv\": \"^6.0.0\",\n    \"fs-extra\": \"^7.0.0\",\n    \"gunzip-maybe\": \"^1.4.1\",\n    \"husky\": \"^0.14.3\",\n    \"live-server\": \"^1.2.0\",\n    \"node-fetch\": \"^2.1.2\",\n    \"prettier\": \"^1.13.7\",\n    \"pretty-quick\": \"^1.6.0\",\n    \"tar\": \"^4.4.4\",\n    \"tar-stream\": \"^1.6.1\",\n    \"unzipper\": \"github:ZJONSSON/node-unzipper#bad-zip-working\"\n  }\n}\n"
  },
  {
    "path": "time-travel/build.js",
    "content": "require(\"dotenv\").config();\r\n\r\nconst fs = require(\"fs-extra\");\r\nconst path = require(\"path\");\r\nconst fetch = require(\"node-fetch\");\r\n// const unzip = require(\"unzipper\");\r\n// const extract = require('tar-stream').extract();\r\nconst tar = require(\"tar\");\r\n// const gunzip = require('gunzip-maybe');\r\n\r\nconst accessToken = process.env.ACCESS_TOKEN;\r\nconst query = `\r\n{\r\n  repository(owner:\"Microsoft\", name:\"join-dev-design\"){\r\n    pullRequests(first: 100, states: MERGED) {\r\n      edges {\r\n        node {\r\n          id\r\n          title\r\n          url\r\n          mergedAt\r\n          author {\r\n            login\r\n            avatarUrl\r\n          }\r\n          editor {\r\n            login\r\n            avatarUrl\r\n          }\r\n          mergeCommit {\r\n            committedDate\r\n            id\r\n            tarballUrl\r\n          }\r\n          id\r\n        }\r\n      }\r\n    }\r\n  }\r\n}`;\r\n\r\nconst historyFolderPath = path.resolve(\r\n  __dirname,\r\n  `../docs/time-travel/history`\r\n);\r\n\r\n/**\r\n * - Flush `.docs/time-travel/history` folder.\r\n */\r\nconst flushFolders = async data => {\r\n  try {\r\n    await fs.remove(historyFolderPath);\r\n    await fs.ensureDir(historyFolderPath);\r\n    console.log(\"`docs/time-travel/history` is flushed.\");\r\n    return data;\r\n  } catch (err) {\r\n    console.error(err);\r\n  }\r\n};\r\n\r\n/**\r\n * getData from github\r\n * @return {Promise} A Promise that resolves to response\r\n */\r\nconst getDataFromGithub = () =>\r\n  fetch(\"https://api.github.com/graphql\", {\r\n    method: \"POST\",\r\n    body: JSON.stringify({ query }),\r\n    headers: {\r\n      \"Content-Type\": \"application/json\",\r\n      Authorization: `Bearer ${accessToken}`\r\n    }\r\n  })\r\n    .then(res => res.json())\r\n    .catch(console.error);\r\n\r\n/**\r\n * Write github response to a json so the front end can use it later.\r\n * @param {Object} data\r\n * @return {Object} same data object\r\n */\r\nconst writeJSONToDocs = data => {\r\n  return fs\r\n    .writeFile(\r\n      path.resolve(__dirname, `../docs/time-travel/index.json`),\r\n      JSON.stringify(data)\r\n    )\r\n    .then(() => data)\r\n    .catch(console.error);\r\n};\r\n\r\n/**\r\n * Parse tar, keep 'docs/', remove 'docs/time-travel' and everything else\r\n * @param {String} options.url tarball url\r\n * @param {String} oprions.id id of merged pull request\r\n */\r\nconst parseTarball = async options => {\r\n  const { url, id } = options;\r\n  const tarball = await fetch(url);\r\n  const tarballStream = tarball.body;\r\n  const unzipPath = path.join(historyFolderPath, id);\r\n  const parse = new tar.Parse();\r\n\r\n  tarballStream\r\n    .on(\"error\", console.error)\r\n    .pipe(parse)\r\n    .on(\"entry\", async function(entry) {\r\n      const type = entry.type;\r\n      const tpath = entry.path;\r\n      const [root, subDir1, subDir2, ...rest] = tpath.split(path.sep);\r\n      console.log(type, tpath);\r\n\r\n      if (subDir1 === \"docs\" && subDir2 !== \"time-travel\" && type === \"File\") {\r\n        const docsPath = path.join(unzipPath, subDir1, subDir2, rest.join(\"\"));\r\n\r\n        try {\r\n          await fs.ensureFile(docsPath);\r\n        } catch (err) {\r\n          console.error(err);\r\n        }\r\n\r\n        entry.pipe(fs.createWriteStream(docsPath));\r\n      } else {\r\n        entry.resume();\r\n      }\r\n\r\n      // entry.on('end', () => { console.log(`${tpath} is written`) });\r\n      entry.on(\"error\", console.error);\r\n    })\r\n    .on(\"error\", console.error);\r\n\r\n  return new Promise(function(resolve, reject) {\r\n    tarballStream.on(\"finish\", () => {\r\n      resolve(unzipPath);\r\n    });\r\n    tarballStream.on(\"error\", reject);\r\n  });\r\n};\r\n\r\ngetDataFromGithub()\r\n  .then(flushFolders)\r\n  .then(writeJSONToDocs)\r\n  .then(res => {\r\n    const tarPromises = res.data.repository.pullRequests.edges.map(edge => {\r\n      const url = edge.node.mergeCommit.tarballUrl;\r\n      const id = edge.node.id;\r\n\r\n      return parseTarball({\r\n        id,\r\n        url\r\n      });\r\n    });\r\n\r\n    return Promise.all(tarPromises);\r\n  })\r\n  .then(paths => {\r\n    console.log(\r\n      `build complete. ${\r\n        paths.length\r\n      } folders has been written to ${historyFolderPath}.`\r\n    );\r\n  });\r\n"
  }
]