-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFilterBox.css
53 lines (48 loc) · 1.06 KB
/
FilterBox.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
.form input {
height:20px;
width:220px;
list-style-type: none;
}
.FilterBoxDropDown {
margin: 0 auto;
padding-top: 5%;
padding-bottom: 15%;
top: 35px;
z-index: 1;
width: 30%;
-webkit-transition: all .25s ease;
-moz-transition: all .25s ease;
-ms-transition: all .25s ease;
-o-transition: all .25s ease;
transition: all .25s ease;
}
.FilterBoxDropDown .divider {
width: 70%;
float: left;
-webkit-box-shadow: 0 8px 6px -6px black;
-moz-box-shadow: 0 8px 6px -6px black;
box-shadow: 0 8px 6px -6px black;
}
.FilterBoxDropDown .entry {
font: normal 13px/50px Arial, Helvetica, sans-serif;
padding: 0 25px;
background: #01abf8;
color:#FFF;
}
.FilterBoxDropDown .entrySelected {
font: normal 13px/50px Arial, Helvetica, sans-serif;
padding: 0 25px;
background: #bbb;
color:#FFF;
}
.FilterBoxInput {
width: 100%;
padding: 12px 20px;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.hiddenSubmit {
visibility: hidden;
}