commit 7833117ba8d5bea6e0c1d6af6e8fb753c27980a4 Author: vodofrede Date: Sat Mar 19 15:06:16 2022 +0100 initial commit diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..c200505 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,11 @@ +Copyright 2022 vodofrede + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..b7460ea --- /dev/null +++ b/src/index.html @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + +
+

Create, view and optimize builds for Elden Ring.

+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/src/optimizer.html b/src/optimizer.html new file mode 100644 index 0000000..2410f56 --- /dev/null +++ b/src/optimizer.html @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + +
+

Class Optimizer

+
+ +
+
+ + +
    + +
  • + + + +
  • +
  • + + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
+
    +
  • +
  • +
  • +
  • +
  • +
  • +
  • +
  • +
  • +
+
+
+ + + + + \ No newline at end of file diff --git a/src/planner.html b/src/planner.html new file mode 100644 index 0000000..7e5f830 --- /dev/null +++ b/src/planner.html @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + +
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/src/script/optimizer.js b/src/script/optimizer.js new file mode 100644 index 0000000..e9630a2 --- /dev/null +++ b/src/script/optimizer.js @@ -0,0 +1,3 @@ +"use strict"; + + diff --git a/src/style/main.css b/src/style/main.css new file mode 100644 index 0000000..68d7379 --- /dev/null +++ b/src/style/main.css @@ -0,0 +1,195 @@ +:root { + --offwhite: #f8f8ff; +} + +/* fonts */ +html { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, + "Helvetica Neue", Arial, "Noto Sans", sans-serif; +} + +@media (max-width: 900px) { + html { + font-size: 0.8rem; + } +} + +/* fix sizing and remove margins and padding */ +html { + box-sizing: border-box; +} + +*, +*::before, +*::after { + box-sizing: inherit; + margin: 0; + padding: 0; +} + +body > * { + padding: 0 2%; +} + +@media (min-width: 900px) { + body > * { + padding: 0 10%; + } +} + +/* scaffolding */ +body { + display: flex; + flex-direction: column; + height: 100vh; +} + +main { + display: flex; + flex-direction: column; +} + +footer { + margin-top: auto; + + outline: 1px solid grey; + background-color: #f8f8ff; +} + +/* nav */ +nav { + /* position */ + display: flex; + justify-content: space-between; + align-items: center; + + /* look */ + background-color: #f8f8ff; + outline: 1px solid grey; +} + +nav ul { + display: flex; + + margin: 0px; + padding: 0px; +} + +nav li { + display: flex; + align-items: center; + + margin: 0px; +} + +nav a { + padding: 0px 10px 0px 0px; +} + +/* headers & paragraphs */ +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 1rem; + margin-bottom: 1.2rem; + + overflow-wrap: break-word; + word-wrap: break-word; + + line-height: 1.1; + font-weight: bold; +} + +p { + margin-top: 0rem; + margin-bottom: 2rem; +} + +/* links */ +a { + text-decoration: none; + color: #1d7484; +} +a:hover { + color: #144f5a; +} +a:visited { + color: #982c61; + border-bottom: 2px solid #4a4a4a; +} + +/* lists & tables */ +ul { + padding-left: 1.4em; + margin-top: 0px; + margin-bottom: 2.5rem; +} + +li { + margin-bottom: 0.4em; +} + +/* buttons & input */ + +/* cards */ +.cards { + display: flex; + flex-flow: row wrap; + justify-content: space-between; + gap: 10px; +} + +.card { + /* flex-grow: 0.45; */ + /* flex-basis: 0px; */ + text-align: center; + + flex-grow: 1; + min-width: 200px; + + border: 1px solid grey; + border-radius: 5px; + + /* look */ + background-color: #f8f8ff; +} + +.card * { + display: inline-block; + text-align: center; +} + +/* apps */ +.app { + display: flex; + flex-direction: row; + justify-content: stretch; + + padding: 15px; + border: 1px solid grey; + border-radius: 5px; + + background-color: #f8f8ff; +} + +.app ul { + display: flex; + flex-direction: column; + justify-content: space-between; +} + +.app ul li * { + width: 200px; +} + +.app li { + height: 20px; + list-style: none; +} + +.app ul input { + width: 40px; +}