-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstylesheet.css
108 lines (99 loc) · 1.94 KB
/
stylesheet.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.searchbox {
width: 100%;
}
* {
box-sizing: border-box;
font-family: "Courier New", Courier, monospace;
color: white;
padding: 0px;
margin: 0px;
}
#GO:hover {
background-color: rgb(204, 204, 204);
transition: all 0.2s;
color: #000;
}
body {
font: 16px Arial;
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
overflow-y: hidden;
overflow-x: hidden;
}
.autocomplete {
/*the container must be positioned relative:*/
position: relative;
display: inline-block;
color: black;
opacity: 0.6;
}
input {
border: 1px solid transparent;
background-color: black;
padding: 10px;
font-size: 16px;
color: black;
}
input[type="text"] {
background-color: #f1f1f1;
width: 100%;
color: black;
}
input[type="submit"] {
background-color: DodgerBlue;
color: #fff;
}
.autocomplete-items {
position: absolute;
border: 1px solid #d4d4d4;
border-bottom: none;
border-top: none;
z-index: 99;
/*position the autocomplete items to be the same width as the container:*/
top: 100%;
left: 0;
right: 0;
color: white;
}
.autocomplete-items div {
padding: 10px;
cursor: pointer;
background-color: black;
border-bottom: 1px solid #d4d4d4;
color: white;
}
.autocomplete-items div:hover {
/*when hovering an item:*/
background-color: black;
color: white;
}
.autocomplete-active {
/*when navigating through the items using the arrow keys:*/
background-color: DodgerBlue !important;
color: white;
}
.infoSec {
color: white;
}
#info {
color: white;
}
.nopadding {
padding: 0 !important;
margin: 0 !important;
}
#title {
align-items: center;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}