diff --git a/demo/templates/index.html b/demo/templates/index.html index a613686..af8e585 100644 --- a/demo/templates/index.html +++ b/demo/templates/index.html @@ -12,86 +12,76 @@ min-height: 100vh; background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%) } - - h1 { - text-align: center; + h1{ color: white; - text-shadow: 0 2px 5px rgba(150, 150, 150, 0.8); + } - - #root { - display: flex; - flex-direction: column; - align-items: center; + p{ + color:white; } - - - .form { - width: 70%; - margin-bottom: 20px; + .container{ + margin-left: 20vw; } - - .form__button { - text-align: center; - margin-top: 10px; - background-color: white; - cursor: pointer; + #submit{ + margin-top: 20px; + border-radius: 10px; + height: 50px; + width:50vw; + color:black; } - - #myButton { - box-sizing: border-box; - width: 100%; - font-size: 18px; - outline: none; - border: none; - padding: 20px; - border-radius: 5px; - -webkit-transition: 0.3s; - -moz-transition: 0.3s; - transition: 0.3s; - -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1); - -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1); - box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1); + #inputText{ + border-radius: 10px; + height: 30px; + width: 49.5vw; } - - #myButton:hover { - -webkit-transition: 0.3s; - -moz-transition: 0.3s; - transition: 0.3s; - -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.5); - -moz-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.5); - } - #myResult { + .container_result{ + margin-top: 20px; + min-height: 50px; text-align: center; - color: white; - text-shadow: 0 2px 5px rgba(150, 150, 150, 0.8); + width: 50vw; + border: 3px solid white; + border-radius: 5px; + background-color: grey; } + + -
-