diff options
| author | garbash <dor.garbash@gmail.com> | 2014-11-28 17:29:15 +0200 |
|---|---|---|
| committer | garbash <dor.garbash@gmail.com> | 2014-11-28 17:29:15 +0200 |
| commit | 045597184560d4579cb5e34d3e731a5d6bb022c9 (patch) | |
| tree | cdc80d22e4f92712963f2cfb8bf3c7f24d964610 /res/css/partials/input-field.scss | |
| parent | 92eb91a3c605cbd830d20dae6488a44d3679299c (diff) | |
Implemented stylesheet structure+font change
Diffstat (limited to 'res/css/partials/input-field.scss')
| -rw-r--r-- | res/css/partials/input-field.scss | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/res/css/partials/input-field.scss b/res/css/partials/input-field.scss new file mode 100644 index 00000000..5b4e478f --- /dev/null +++ b/res/css/partials/input-field.scss @@ -0,0 +1,42 @@ +input{ + background-color: rgba(17,17,17,0.8); + color: white; + border-width: 1px; + border-color: #303030; + font-size:14px; + + outline:none; + border-color:#303030; + box-shadow:0 0 0px #303030; + -webkit-transition: all 0.04s ease-in-out; + -moz-transition: all 0.04s ease-in-out; + -ms-transition: all 0.04s ease-in-out; + -o-transition: all 0.04s ease-in-out; +} + +#textinputui { + position: fixed; + display: block; + top: 40px; + left: 20px; + right: 400px; +} + +#textanalyser{ + float: left; + height:30px; + max-width: 70%; + width:900px; +} + +input:focus { +} + +#suggestion{ + list-style-type: none; +} + +#suggestion td{ + padding-top: 5px; + padding-left: 200px; +}
\ No newline at end of file |
