-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (64 loc) · 1.2 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
padding: 0;
margin: 0;
border: 0;
outline: none;
box-sizing: border-box;
}
body {
font-family: "Poppins", sans-serif;
font-size: 1rem;
font-weight: 300;
line-height: 1;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #06283d;
}
.container {
position: relative;
width: 400px;
height: 605px;
background: #fff;
padding: 28px 32px;
overflow: hidden;
border-radius: 18px;
transition: 0.6s ease-out;
}
.search-box {
width: 100%;
height: min-content;
display: flex;
align-items: center;
justify-content: space-between;
}
.search-box input {
color: #06283d;
width: 80%;
font-size: 24px;
font-weight: 500;
text-transform: uppercase;
padding-left: 32px;
}
.search-box input::placeholder {
font-size: 20px;
font-weight: 500;
color: #06283d;
text-transform: capitalize;
}
.btn-solid {
cursor: pointer;
width: 50px;
height: 50px;
color: #06283d;
background: #dff6ff;
border-radius: 50%;
font-size: 22px;
transition: 0.4s ease;
}
.btn-solid:hover {
color: #fff;
background-color: #06283d;
}