index.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Job Board</title>
  5. <script type="text/javascript" src="/static/jquery.js"></script>
  6. <script type="text/javascript" src="/static/jquery-ui.min.js"></script>
  7. <script type="text/javascript" src="/static/corkboard.js"></script>
  8. <link rel="stylesheet" href="/static/jquery-ui.min.css">
  9. <style>
  10. html,body {
  11. height: 100%;
  12. margin: 0px;
  13. padding: 0px;
  14. font-family: "Arial", "Helvetica", sans-serif;
  15. }
  16. #content {
  17. display: grid;
  18. grid-template-rows: 2em auto;
  19. height: 100%;
  20. }
  21. #chrome {
  22. border: 1px solid black;
  23. display: flex;
  24. flex-direction: row;
  25. align-items: center;
  26. }
  27. #board {
  28. width: 100%;
  29. height: 100%;
  30. background-color: #ddd;
  31. }
  32. #title {
  33. padding: 0.5em;
  34. }
  35. .note {
  36. background-color: #fff;
  37. width: 300px;
  38. height: 220px;
  39. padding: 0.5em;
  40. border: 1px solid black;
  41. display: grid;
  42. grid-template-rows: 90% auto;
  43. }
  44. .text { height: 100%; width: 100%; }
  45. #add { color: #900; padding: 0.5em; }
  46. .edit { color: #900; padding: 0.5em; }
  47. .delete { color: #900; padding: 0.5em; }
  48. .confirm { color: #f00; padding: 0.5em; }
  49. </style>
  50. </head>
  51. <body>
  52. <div id="content">
  53. <div id="chrome">
  54. <span id="title">The Mute's Job Board</span>
  55. <a id="add">create</a>
  56. </div>
  57. <div id="board"></div>
  58. </div>
  59. </body>
  60. </html>