-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontact-us_style.css
More file actions
102 lines (102 loc) · 1.95 KB
/
Copy pathcontact-us_style.css
File metadata and controls
102 lines (102 loc) · 1.95 KB
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
99
100
101
102
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@900&family=Sumana:wght@700&display=swap");
.ppl-body {
align-items: center;
background-color: #f2f2f2;
display: flex;
font-family: "Merriweather", serif;
flex-wrap: wrap;
justify-content: center;
height: 100vh;
margin: 0;
}
.person {
align-items: center;
display: flex;
flex-direction: column;
width: 250px;
justify-content: space-between;
margin: 20px;
}
.abpple-container {
border-radius: 50%;
height: 312px;
-webkit-tap-highlight-color: transparent;
transform: scale(0.48);
transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
width: 400px;
}
.abpple-container:after {
background-color: #f2f2f2;
content: "";
height: 10px;
position: absolute;
top: 390px;
width: 100%;
}
.abpple-container:hover {
transform: scale(0.54);
}
.abpple-container-inner {
clip-path: path(
"M 390,400 C 390,504.9341 304.9341,590 200,590 95.065898,590 10,504.9341 10,400 V 10 H 200 390 Z"
);
position: relative;
transform-origin: 50%;
top: -200px;
}
.circle {
background-color: #fee7d3;
border-radius: 50%;
cursor: pointer;
height: 380px;
left: 10px;
pointer-events: none;
position: absolute;
top: 210px;
width: 380px;
}
.img {
pointer-events: none;
position: relative;
transform: translateY(20px) scale(1.15);
transform-origin: 50% bottom;
transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.abpple-container:hover .img {
transform: translateY(0) scale(1.2);
}
.img1 {
left: 22px;
top: 164px;
width: 340px;
}
.img2 {
left: -56px;
top: -100px;
width: 464px;
height: 190%;
}
.img3 {
left: -16px;
top: 134px;
width: 466px;
}
.divider {
background-color: #ca6060;
height: 1px;
width: 160px;
}
.name {
color: #404245;
font-size: 36px;
font-weight: 600;
margin-top: 16px;
text-align: center;
}
.title {
color: #6e6e6e;
font-family: arial;
font-size: 14px;
font-style: italic;
margin-top: 4px;
}