blob: 946650c0c3324ee4dad7f0fb78fc8259914a8128 (
plain)
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
|
#search-area {
width: 250px;
height: 110px;
background: url('../images/backgrounds/search-area.png') no-repeat;
background-size: 250px 110px;
margin: auto;
padding: 0px;
border: 0px;
position: absolute;
bottom: 0px;
right: 0px;
}
#search-form {
position: absolute;
bottom: 10px;
left: 40px;
}
#search-form input[type=text]{
display: block;
width: 180px;
font-size: 12px;
background: transparent;
color: #231F20;
border-radius: 4px;
}
#search-form input::placeholder {
color: #524e4f;
}
|