index.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <!-- Copyright (C) 2021 Kevin "The Nuclear" Bloom <nuclearkev@dragora.org> -->
  2. <!-- This file is part of libre-RPN (LR). -->
  3. <!-- LR is free software: you can redistribute it and/or modify -->
  4. <!-- it under the terms of the 2-Clause BSD License. -->
  5. <!-- LR is distributed in the hope that it will be useful, -->
  6. <!-- but WITHOUT ANY WARRANTY; without even the implied warranty of -->
  7. <!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -->
  8. <!-- 2-Clause BSD License for more details. -->
  9. <!-- You should have received a copy of the 2-Clause BSD License -->
  10. <!-- along with LR. If not, see <https://opensource.org/licenses/BSD-2-Clause>. -->
  11. <!DOCTYPE html>
  12. <html lang="en">
  13. <head>
  14. <meta charset="utf-8">
  15. <meta name="viewport" content="width=device-width, initial-scale=1">
  16. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
  17. <meta name="theme-color" content="#02a30f">
  18. <title>Libre RPN Calculator</title>
  19. <meta name="defaultLanguage" content="en-US">
  20. <link href="css/main.css" rel="stylesheet">
  21. <script src="js/rpn.lisp.js"></script>
  22. </head>
  23. <body>
  24. <header id="title">
  25. <h1 id="title-text"></h1>
  26. </header>
  27. <div class="container" id="app">
  28. <!-- <div id="search-menu" class="menu menu-inactive"> -->
  29. <!-- <h2 id="search-title" class="menu-title"> -->
  30. <!-- Book Search -->
  31. <!-- </h2> -->
  32. <!-- <div id="search-content" class="menu-content"></div> -->
  33. <!-- </div> -->
  34. <div id="menu" class="menu">
  35. </div>
  36. <div id="calc">
  37. <div id="stack"></div>
  38. <div id="input">
  39. <div id="operand"/>
  40. </div>
  41. <div id="directions">
  42. <div id="up">
  43. -
  44. </div>
  45. <div id="left_center_right">
  46. <p>/</p>
  47. <p>Enter</p>
  48. <p>*</p>
  49. </div>
  50. <div id="down">
  51. +
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. <div id="navigator">
  57. <span id="left"></span>
  58. <span id="middle"></span>
  59. <span id="right"></span>
  60. </div>
  61. </body>
  62. </html>