-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyles.css
47 lines (47 loc) · 837 Bytes
/
styles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Varela Round", sans-serif;
}
.hero {
width: 100%;
height: 100vh;
background: #f0f3ff;
display: flex;
align-items: center;
justify-content: center;
}
#searchBox {
border-radius: 55px;
padding: 30px;
background: #f0f3ff;
display: flex;
align-items: center;
box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
-6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}
#googleIcon {
width: 50px;
cursor: pointer;
}
.mic-icon {
width: 0px;
transition: 0.5s;
transition-delay: 0.5s;
}
input {
font-size: 20px;
width: 0px;
border: 0;
background: transparent;
outline: none;
transition: 2s;
}
.active input {
width: 500px;
padding: 12px 20px;
}
.active .mic-icon {
width: 30px;
}