-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (48 loc) · 860 Bytes
/
style.css
File metadata and controls
55 lines (48 loc) · 860 Bytes
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
* {
box-sizing: border-box;
}
body {
background-image: -webkit-linear-gradient(0deg, #bd63a9, #7727f7);
font-family: monospace;
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
overflow: hidden;
margin: 0;
}
.search {
position: relative;
height: 50px;
}
.search .input {
background-color: white;
border: 0;
font-size: 18px;
padding: 15px;
height: 50px;
width: 50px;
transition: all 0.3s ease;
}
.btn {
background-color: white;
border: 0;
cursor: pointer;
font-size: 24px;
position: absolute;
top: 0;
left: 0;
height: 50px;
width: 50px;
transition: all 0.3s ease;
}
.btn:focus,
.input:focus {
outline: none;
}
.search.active .btn {
transform: translateX(248px);
}
.search.active .input {
width: 250px;
}