-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle.css
98 lines (87 loc) · 1.55 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
88
89
90
91
92
93
94
95
96
97
98
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
border: none;
outline: none;
font-family: "Poppins", sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
}
h1 {
font-size: 18px;
margin-bottom: 15px;
font-size: 32px;
}
.container {
width: 500px;
background-color: white;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
padding: 30px;
border-radius: 10px;
}
.upper-part {
width: 100%;
display: flex;
gap: 40px;
justify-content: center;
}
.upper-part div {
height: 120px;
width: 120px;
color: white;
background-color: black;
border-radius: 50%;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
span {
font-size: 30px;
font-weight: 500;
}
p {
font-size: 15px;
color: gray;
font-weight: 400;
}
.lower-part {
display: flex;
justify-content: space-between;
padding: 25px;
border-radius: 5px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
margin-top: 40px;
background-color: black;
}
input {
width: 60%;
height: 50px;
padding: 0 20px;
font-size: 18px;
font-weight: 500;
border-radius: 5px;
background-color: white;
color: black;
}
button {
width: 35%;
height: 50px;
font-size: 16px;
font-weight: 500;
border-radius: 5px;
background-color: white;
color: black;
cursor: pointer;
}
button:active {
transform: scale(0.95);
}