-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBallMenu.css
More file actions
44 lines (41 loc) · 1.17 KB
/
BallMenu.css
File metadata and controls
44 lines (41 loc) · 1.17 KB
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
canvas {
background: -webkit-radial-gradient(#303030, black);
background: -o-radial-gradient(#303030, black);
background: -moz-radial-gradient(#303030, black);
background: radial-gradient(#303030, black);
position: absolute;
border: 0 solid #000000;
overflow: hidden;
left: 0;
top: 0;
}
#search.hide {
border: 0px;
margin: 0px;
padding: 0px;
width: 0px;
height:0px;
}
#search {
position: absolute;
width: 100px;
height: 20px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.form {
border-color: #3c763d;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}