-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
71 lines (56 loc) · 881 Bytes
/
index.css
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
body{
display: block;
text-align: center;
background: rgba(0, 0, 1, 0.1);
}
h1{
font-family: verdana;
font-style: normal;
font-weight: 10px;
font-size: 65px;
color: darkblue;
}
.container{
display: inline-block;
margin-top: 5%;
}
input[type='text']{
width: 300px;
height: 20px;
padding: 10px;
}
input[type='submit']{
width: 40px;
height: 35px;
padding: 5px;
}
ul#sugList{
list-style-type: none;
text-align: left;
margin: 0px;
padding:0px;
}
ul#sugList > li{
display: inline-block;
width:301px;
background: rgba(0,0,0,0.10);
color: black;
padding: 10px;
cursor: pointer;
border: 1px solid rgba(0, 0, 0, 0.5);
box-shadow: 1px 0px 1px 1px rgba(0, 0,0, 0.4);
}
ul#sugList > li:hover{
background: rgba(0,0,0,0.3)
}
.footer{
position: fixed;
bottom: 0px;
right: 10px;
text-align: right;
}
.footer-text{
font-size: 24px;
}
#suggestions{
}