-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather.css
65 lines (55 loc) · 1.12 KB
/
weather.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
body {
display: table;
position: absolute;
height: 100%;
width: 100%;
}
.jumbotron {
display: table-cell;
vertical-align: middle;
}
.container-3{
width: 300px;
vertical-align: middle;
white-space: nowrap;
position: relative;
}
.container-3 input#search{
width: 300px;
height: 50px;
background: #2b303b;
border: none;
font-size: 10pt;
float: left;
color: #262626;
padding-left: 45px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
color: #fff;
}
.container-3 input#search::-webkit-input-placeholder {
color: #65737e;
}
.container-3 input#search:-moz-placeholder { /* Firefox 18- */
color: #65737e;
}
.container-3 input#search::-moz-placeholder { /* Firefox 19+ */
color: #65737e;
}
.container-3 input#search:-ms-input-placeholder {
color: #65737e;
}
.container-3 .icon{
position: absolute;
top: 50%;
margin-left: 17px;
margin-top: 17px;
z-index: 1;
color: #4f5b66;
-webkit-transition: all .55s ease;
-moz-transition: all .55s ease;
-ms-transition: all .55s ease;
-o-transition: all .55s ease;
transition: all .55s ease;
}