diff --git a/README.md b/README.md index cb9293d..3fa7ced 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,12 @@ To be decided, but at this moment this code is open source and free to use for n ## Changelog +### 0.3.2 + +* Added IC Element, allows for converting a logic design to an IC for use in designs. +* Added IC Input and IC Output which allow for external connections when a design is used as an IC +* Added a New button for creating a new design + ### 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. diff --git a/css/main.css b/css/main.css index 2b8bba9..a752759 100644 --- a/css/main.css +++ b/css/main.css @@ -366,7 +366,7 @@ textarea { #WelcomeWindow label { font-size: 0.5em; } -#PropertiesBox { +#PropertiesBox, #CreateICBox { display: none; position: absolute; right: 20px; @@ -375,15 +375,25 @@ textarea { height: 200px; background-color: #444455; border: 1px solid black; + z-index: 999; +} +#CreateICBox { + width: 400px; + height: 300px; + z-index: 9999999; } -#PropertiesBoxTitle { +#CreateICBox input[pattern]:invalid { + border: 3px solid red; +} + +#PropertiesBoxTitle, #CreateICBoxTitle { text-align: center; background-color: #222222; font-size: 1.5em; } -#PropertiesBoxContent { +#PropertiesBoxContent, #CreateICBoxContent { padding: 5px; } diff --git a/index.html b/index.html index 5729f37..d522f61 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - +
@@ -21,7 +21,7 @@ - +To create an IC you must give it a few parameters below:
+