diff --git a/README.md b/README.md index 6874a4d..cb9293d 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,10 @@ To be decided, but at this moment this code is open source and free to use for n ## Changelog +### 0.3.1 +* Toolbox is now dynamically created and categorized +* The delete button is gone for now (use delete key on keyboard), it will come back when toolbar is added. + ### 0.3.0 * Saving / Loading of designs * New Element: Buffer, allows for construction of circuits that would otherwise be recursive diff --git a/css/main.css b/css/main.css index 14e8242..2b8bba9 100644 --- a/css/main.css +++ b/css/main.css @@ -267,22 +267,55 @@ textarea { #left-menu { width: 200px; max-width: 200px; - height: 100vh; + height: 99vh; display: inline-block; border: 1px solid black; margin: 0px; padding: 0px; } +#inner-left-menu { + width: 100%; + height: 99%; + overflow: auto; +} + #top-bar { height: 50px; - overflow: auto; + overflow: none; margin: 0px; padding: 0px; background-color: #222; font-size: 2em; } +#LeftOf-SiteTitle { + display: inline-block; + width: 200px; + height: 100%; + font-size: 0.5em; + margin: 0px; + padding: 5px; +} + +#SiteTitle { + display: inline-block; + height: 100%; + width: 50%; + margin: 0px; + padding-top: 2px; +} +.TOOLBOX_CATEGORY_HEADER { + margin: 0px; + padding: 0px; + text-align: center; + background-color: #222; +} +.TOOLBOX_CATEGORY_HEADER h2 { + margin: 0px; + padding: 5px; +} + #darkout-overlay { position: absolute; left: 0px; diff --git a/index.html b/index.html index 5416f28..5729f37 100644 --- a/index.html +++ b/index.html @@ -31,27 +31,18 @@