diff --git a/themes/simple/index.html b/themes/simple/index.html index d6be2c0..0cdbbbe 100644 --- a/themes/simple/index.html +++ b/themes/simple/index.html @@ -6,14 +6,30 @@ width: 100%; height: 100%; overflow: hidden; + opacity: 1; margin: 0; + background-color: #ffffff; + transition: opacity 2s, background-color 2s, background-position 2s; + transition-timing-function: ease-in; } body { - background: linear-gradient(white, SlateGray); + background: linear-gradient(transparent, SlateGray); + background-color: #ffffff; + font-family: 'sans-serif'; font-size: 24px; } + html.session_starting { + opacity: 0; + } + + .session_starting body { + opacity: 0; + background-color: rgba(0, 0, 0, 0); + background-position-y: -100%; + } + .container { width: 100%; height: 100%; @@ -35,6 +51,7 @@ .wrapper { height: 85px; + width: 350px; position: absolute; left: 0; right: 0; @@ -53,10 +70,36 @@ text-align: center; visibility: hidden; } + + input#entry { + outline: none; + background: rgba(0, 0, 0, 0.05); + box-shadow: none; + box-sizing: border-box; + line-height: normal; + transition: .3s ease; + border: none !important; + padding: 14px 4% !important; + font-size: 16px; + color: #666; + background-color: #fff; + width: 100%; + font-weight: 400; + border-radius: 3px !important; + } + + input#entry:focus { + background: rgba(0, 0, 0, 0.1); + color: rgba(0, 0, 0, 0.75); + } + + input#entry:focus::placeholder { + color: rgba(255, 255, 255, 0.3); + } - +
@@ -64,7 +107,7 @@
-
+
@@ -72,49 +115,56 @@