-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (87 loc) · 1.65 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body
{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: url(https://i.pinimg.com/originals/40/3f/81/403f81c837521bed6a85e543dde66eef.jpg);
background-size: cover;
}
h1
{
margin: 50px;
}
.wrapper
{
display: flex;
align-items: center;
justify-content: space-between;
max-width: 350px;
width: 100%;
background: #4a98f7;
padding: 35px;
border-radius: 16px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.wrapper .input_box h6
{
font-size: 14px;
font-weight: 400;
color: #fff;
margin-bottom: 2px;
}
.wrapper .icon
{
font-size: 25px;
color: #fff;
margin-top: 5px;
margin-left: 5px;
margin-right: 10px;
}
.wrapper .input_box input
{
max-width: 100px;
height: 50px;
border-radius: 8px;
outline: none;
border: none;
text-align: center;
font-size: 20px;
color: #737373;
}
.wrapper .input_box select
{
max-width: 100px;
outline: none;
border: none;
text-align: center;
}
button
{
padding: 5px;
margin: 5px 5px;
border-radius: 16px;
outline: none;
border: none;
}
.input_box input::-webkit-inner-spin-button,
.input_box input::-webkit-outer-spin-button
{
display: none;
}
footer
{
min-height: 49vh;
color: #ffffff62;
font-size: 10px;
font-weight: 500;
text-transform: lowercase;
}