diff --git a/src/index.html b/src/index.html index 6e33895..b9a028c 100644 --- a/src/index.html +++ b/src/index.html @@ -19,6 +19,11 @@ background-color: #fafafa; } + h4{ + margin-bottom:10px; + + } + .headerSection { display: flex; flex-direction: row; @@ -58,15 +63,15 @@ .labels button { flex-grow: 1; - margin: 0px 5px 10px 0; + margin: 0px 5px 5px 0; border: 1px solid #00000011; - border-radius: 3px; + border-radius: 6px; display: inline-block; - color: #aaa; + color: #888; padding: 5px 8px 5px 8px; background-color: #fff0; margin-right: 5px; - font-size: 14px; + font-size: 12px; font-weight: 400; transition: all 0.2s ease-in-out; } @@ -84,10 +89,55 @@ z-index: 1000; } + .info-icon, .close-icon{ + position:absolute; + display:block; + width:24px; + height:24px; + bottom:10px; + right:10px; + fill:#aaa; + } + + .hide-modal{ + transition:all 0.2s ease-in-out; + opacity:0; + transform: scale(0,0); + border-radius:20px; + + } + + .show-modal{ + transition:all 0.2s ease-in-out; + opacity:1; + transform: scale(1,1); + border-radius:4px; + } + + .info-modal{ + transform-origin: 100vw 100vh; + position: absolute; + top:4px; + left:4px; + bottom:4px; + right:4px; + z-index: 1000000; + padding:10px; + font-size:12px; + background-color: #fff; + box-shadow: 0 3px 10px #555; + color:#555; + + } + + .info-modal:last-child{ + color:#888; + } + textarea { padding: 3%; padding-top: 10px; - font-size: 14px; + font-size: 12px; border: none; border-top: 1px solid #eee; flex: 1 1 100%; @@ -216,6 +266,32 @@ +
+ + + + +