-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (39 loc) · 796 Bytes
/
style.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
.containerLocation{
margin-top:50px;
margin-left:50px;
}
.container{
width: 300px;
height: 30px;
}
.inputField{
height:100%;
width:100%;
margin-right: -45px;
padding-left: 35px;
display: inline-block;
}
.inputFieldFont{
font-size: 16px
}
.leftIcon{
display: inline-block;
position: absolute; /* important to position an inline-block element */
margin-top: 4px;
height: 30px;
width: 30px;
margin-left: 3px;
background-image: url(user.svg);
background-repeat: no-repeat;
background-color: white;
}
.rightIcon{
display: inline-block;
position: absolute; /* important to position an inline-block element */
margin-top: 4px;
height: 30px;
width: 30px;
background-image: url(view.svg);
background-repeat: no-repeat;
background-color: white;
}