summaryrefslogtreecommitdiff
path: root/res/css/partials/input-field.scss
blob: 5b4e478f14c194d4bf84a1a66e563f5283deb0af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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;
}