index.html 973 B

1234567891011121314151617181920212223242526272829303132
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Triage dashboard</title>
  6. <style>
  7. * { font-family: sans-serif; }
  8. code { font-family: monospace; }
  9. h1 { font-size: 22px; }
  10. h2 { font-size: 18px; }
  11. h3 { font-size: 16px; }
  12. h4 { font-size: 14px; }
  13. p, ul { font-size: 15px; line-height: 150%; }
  14. code { background-color: #efefef; }
  15. div.wrapper { max-width: 60em; margin-left: auto; margin-right: auto; }
  16. .repos { font-size: 18px; line-height: 180%; }
  17. </style>
  18. </head>
  19. <body>
  20. <div class="wrapper">
  21. <h1>Triage dashboards</h1>
  22. <h2>Repositories</h2>
  23. <ul class="repos">
  24. <li><a href="triage/rust-lang/rust-clippy">clippy</a></li>
  25. <li><a href="triage/rust-lang/rust">rust</a></li>
  26. </ul>
  27. </div>
  28. </body>
  29. </html>