-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewRubber.css
53 lines (49 loc) · 1021 Bytes
/
newRubber.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
.center {
margin-top: 3px;
float: left;
width: 64px;
height: 64px;
margin-right: 15px;
margin-left: 15px;
}
.name {
margin: auto;
font-family: Montserrat;
font-size: 40px;
color: white;
font-weight: bold;
display: inline-block;
margin-right: 15px;
margin-top: 8px;
}
.input {
font-family: Montserrat;
border: none;
border-radius: 15px;
display: block;
width: 77%;
font-size: 16px;
padding: 12px 20px;
position: relative;
top: -7px;
background-image: url('searchIcon.png');
background-position: 99%;
background-size: 12px 12px;
background-repeat: no-repeat;
display:inline-block;
}
.input:focus {
background-color: lightblue;
border: none;
border-radius: 15px;
outline: none;
}
@font-face {
font-family: Montserrat;
src: url(Montserrat-Regular.ttf);
}
@font-face {
font-family: Montserrat;
src: url(Montserrat-Bold.ttf);
font-weight: bold;
}