123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <!-- Copyright (C) 2021 Kevin "The Nuclear" Bloom <nuclearkev@dragora.org> -->
- <!-- This file is part of libre-RPN (LR). -->
- <!-- LR is free software: you can redistribute it and/or modify -->
- <!-- it under the terms of the 2-Clause BSD License. -->
- <!-- LR is distributed in the hope that it will be useful, -->
- <!-- but WITHOUT ANY WARRANTY; without even the implied warranty of -->
- <!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -->
- <!-- 2-Clause BSD License for more details. -->
- <!-- You should have received a copy of the 2-Clause BSD License -->
- <!-- along with LR. If not, see <https://opensource.org/licenses/BSD-2-Clause>. -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
- <meta name="theme-color" content="#02a30f">
- <title>Libre RPN Calculator</title>
- <meta name="defaultLanguage" content="en-US">
- <link href="css/main.css" rel="stylesheet">
- <script src="js/rpn.lisp.js"></script>
- </head>
- <body>
- <header id="title">
- <h1 id="title-text"></h1>
- </header>
- <div class="container" id="app">
- <!-- <div id="search-menu" class="menu menu-inactive"> -->
- <!-- <h2 id="search-title" class="menu-title"> -->
- <!-- Book Search -->
- <!-- </h2> -->
- <!-- <div id="search-content" class="menu-content"></div> -->
- <!-- </div> -->
- <div id="menu" class="menu">
- </div>
- <div id="calc">
- <div id="stack"></div>
- <div id="input">
- <div id="operand"/>
- </div>
- <div id="directions">
- <div id="up">
- -
- </div>
- <div id="left_center_right">
- <p>/</p>
- <p>Enter</p>
- <p>*</p>
- </div>
- <div id="down">
- +
- </div>
- </div>
- </div>
- </div>
- <div id="navigator">
- <span id="left"></span>
- <span id="middle"></span>
- <span id="right"></span>
- </div>
- </body>
- </html>
|