-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.css
46 lines (46 loc) · 947 Bytes
/
product.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
body{
font-family: arial;
}
h3{
margin: 20px 0px 0px 0px;
padding: 0;
}
p{
margin: 0;
padding: 0;
}
form{
text-align: center;
}
#searchBar{
border: 1px solid #000000;
border-right: none;
font-size: 16px;
padding: 10px;
outline: none;
width: 250px;
-webkit-border-top-left-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-bottomleft: 10px;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
#searchBtn{
border: 1px solid #000000;
font-size: 16px;
padding: 10px;
background: #f1d829;
font-weight: bold;
cursor: pointer;
outline: none;
-webkit-border-top-right-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
-moz-border-radius-topright: 10px;
-moz-border-radius-bottomright: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
#searchBtn:hover{
background: #f6e049;
}