@@ -44,6 +53,12 @@
+
XML soubor je pro zatím nutné vytvořit v tomto editoru. GUI editor není ještě vytvořen, ale je v plánu.
+
+
+
+ diff --git a/css/style.css b/css/style.css index 73fdd9d..01096b6 100644 --- a/css/style.css +++ b/css/style.css @@ -7,6 +7,10 @@ html { height: 100%; } +* { + box-sizing: border-box; +} + body { font-family: RobotoSlab; color: #707070; @@ -23,6 +27,7 @@ body { } aside { + position: relative; grid-area: comments; background-color: #ededed; display: flex; @@ -301,3 +306,67 @@ progress::-webkit-progress-bar { height: 100%; z-index: 15; } + +#about { + position: absolute; + bottom: 0; + padding: 3vh 2vw 3vh 1.5vw; +} +#about h1 { + margin-bottom: 0.2em; +} + +#about div { + display: flex; + margin-top: 0.5em; + gap: 1em; +} + +a { + color: #282828; + text-decoration: none; +} + +form { + width: 100%; + height: 100%; + display: grid; + align-items: center; + justify-items: center; +} +form input { +} + +#textInput { + height: 100%; + display: flex; + flex-direction: column; + align-items: stretch; + justify-content: space-between; + gap: 1em; +} + +#textInput textarea { + width: 100%; + height: 100%; + resize: none; + padding: 0; + margin: 0; +} + +#textInput input { + width: 100%; + height: 2.5em; + appearance: none; + background-color: #ffa800; + color: white; + border: none; + font-weight: bold; + padding: 0; + margin: 0; + cursor: pointer; +} + +#textInput input:hover { + background-color: #ff9100; +} diff --git a/index.html b/index.html index b0669ed..cbc84bb 100644 --- a/index.html +++ b/index.html @@ -18,13 +18,22 @@