isometrik-chat 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +74 -0
- package/babel.config.js +6 -0
- package/dist/index.js +684 -0
- package/package.json +59 -0
- package/public/Logo-192x192.png +0 -0
- package/public/Logo-512x512.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/fonts/BenjaminVictoria.ttf +0 -0
- package/public/icons/arrow_logo.svg +9 -0
- package/public/icons/assets/ic_placeholder_banner.svg +1 -0
- package/public/icons/attach-file.svg +9 -0
- package/public/icons/audio_pause.svg +1 -0
- package/public/icons/audio_play.svg +6 -0
- package/public/icons/back.svg +3 -0
- package/public/icons/bell.svg +1 -0
- package/public/icons/block.svg +1 -0
- package/public/icons/bottom-arrow.svg +1 -0
- package/public/icons/camera-switch.svg +12 -0
- package/public/icons/camera.svg +4 -0
- package/public/icons/cancel.svg +1 -0
- package/public/icons/chat empty placeholder.svg +58 -0
- package/public/icons/chat_audio_pause.png +0 -0
- package/public/icons/chat_audio_play.png +0 -0
- package/public/icons/close.svg +5 -0
- package/public/icons/crossCarousel.svg +3 -0
- package/public/icons/delete.svg +3 -0
- package/public/icons/disappear.svg +24 -0
- package/public/icons/document.png +0 -0
- package/public/icons/document.svg +1 -0
- package/public/icons/downloadCarousel.svg +6 -0
- package/public/icons/edit-pencil.svg +6 -0
- package/public/icons/emoji.svg +8 -0
- package/public/icons/emojiCarousel.svg +3 -0
- package/public/icons/filter.svg +1 -0
- package/public/icons/forwardCarousel.svg +3 -0
- package/public/icons/gallery.svg +1 -0
- package/public/icons/goToMessageCarousel.svg +3 -0
- package/public/icons/ic_uil_arrow-left.svg +1 -0
- package/public/icons/ic_uil_eye-slash.svg +1 -0
- package/public/icons/ic_uil_eye.svg +1 -0
- package/public/icons/leftArrowCarousel.svg +6 -0
- package/public/icons/light-mode.svg +14 -0
- package/public/icons/lock.svg +1 -0
- package/public/icons/login_background.png +0 -0
- package/public/icons/menu .svg +5 -0
- package/public/icons/menuCarousel.svg +5 -0
- package/public/icons/message.svg +3 -0
- package/public/icons/placeholder.svg +958 -0
- package/public/icons/poll.svg +1 -0
- package/public/icons/retake.png +0 -0
- package/public/icons/right-arrow.svg +3 -0
- package/public/icons/right.svg +3 -0
- package/public/icons/round-star.svg +1 -0
- package/public/icons/search.svg +3 -0
- package/public/icons/send.svg +10 -0
- package/public/icons/starCarousel.svg +3 -0
- package/public/icons/status.svg +1 -0
- package/public/icons/sticker.svg +1 -0
- package/public/icons/thumb-down.svg +1 -0
- package/public/icons/user.svg +1 -0
- package/public/icons/users.svg +1 -0
- package/public/icons/voice.png +0 -0
- package/public/index.html +38 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/offline.html +12 -0
- package/public/robots.txt +3 -0
- package/public/service-worker.js +81 -0
- package/src/App.js +15 -0
- package/src/App.test.js +8 -0
- package/src/Authpage.js +16 -0
- package/src/ChatContext.js +172 -0
- package/src/Data/index.js +110 -0
- package/src/assets/icons.js +49 -0
- package/src/assets/images/WhatsApp.html +258 -0
- package/src/assets/images/WhatsApp_files/301446776_522918349234681_1974693392291574064_n.jpg +0 -0
- package/src/assets/images/WhatsApp_files/app-bf223f825866ee433b07.css +242 -0
- package/src/assets/images/WhatsApp_files/app.77ee8aa7a4c593101105.js +77 -0
- package/src/assets/images/WhatsApp_files/lazy_loaded_high_priority_components.85a06e74a0a4ade1640b.css +16 -0
- package/src/assets/images/WhatsApp_files/lazy_loaded_low_priority_components.8621270bc215a9298a97.css +47 -0
- package/src/assets/images/WhatsApp_files/libsignal-protocol-ee5b8ba.min.js +21 -0
- package/src/assets/images/WhatsApp_files/main.48b845d68e066fb27a75.css +161 -0
- package/src/assets/images/WhatsApp_files/runtime.e6018f3c1e255e8f4dc7.js +2 -0
- package/src/assets/images/WhatsApp_files/stylex-d50abd61e6cf7eab2afd855adccf14e5.css +2841 -0
- package/src/assets/images/WhatsApp_files/vendor1_app.58a51d93a250f83ab555.js +79 -0
- package/src/assets/images/bg.jpeg +0 -0
- package/src/assets/images/drkbg.jpg +0 -0
- package/src/assets/images/notFound.jpeg +0 -0
- package/src/assets/images/watsapp.jpg +0 -0
- package/src/assets/images/watsappbg.png +0 -0
- package/src/assets/images/wb.jpg +0 -0
- package/src/assets/images/whatsapp.jpeg +0 -0
- package/src/components/ChatBox/AudioBubble.js +162 -0
- package/src/components/ChatBox/ChatBubble.js +232 -0
- package/src/components/ChatBox/DocumentBubble.js +87 -0
- package/src/components/ChatBox/MessagesBox.js +533 -0
- package/src/components/CustomModal.js +60 -0
- package/src/components/Icon.js +10 -0
- package/src/components/ImageComponent.js +24 -0
- package/src/components/MediaDocs.js +155 -0
- package/src/components/MediaDocumentContainer.js +55 -0
- package/src/components/MessageInfoDropdown.js +124 -0
- package/src/components/Modal/AllowMicPermissionModal.js +63 -0
- package/src/components/Modal/BlockUnblockChatModal.js +78 -0
- package/src/components/Modal/CameraPermissionBlockedModal.js +61 -0
- package/src/components/Modal/CameraPermissionRequestModal.js +60 -0
- package/src/components/Modal/ClearChatModal.js +78 -0
- package/src/components/Modal/DeleteChatModal.js +79 -0
- package/src/components/Modal/MicPermissionDisableModal.js +63 -0
- package/src/components/Modal/Modal.js +103 -0
- package/src/components/Modal/ModalDialog.js +103 -0
- package/src/components/Modal/ProfilePictureUploadPreview.js +160 -0
- package/src/components/OutsideAlerter/OutsideAlerter.js +38 -0
- package/src/components/ProfilePicture/ProfilePicture.js +127 -0
- package/src/components/Registration/Login.js +265 -0
- package/src/components/Registration/SignUp.js +322 -0
- package/src/components/SnackBar.js +42 -0
- package/src/components/common/Modal/useDetectOutsideClick.js +23 -0
- package/src/components/common/styled/PageWrapper.js +25 -0
- package/src/components/formcontrol/CustomButton.js +38 -0
- package/src/components/formcontrol/InputText.js +60 -0
- package/src/global-styles.js +42 -0
- package/src/hooks/useDeviceType.js +28 -0
- package/src/hooks/useThrottle.js +29 -0
- package/src/index.css +225 -0
- package/src/index.js +23 -0
- package/src/lib/constant.js +21 -0
- package/src/lib/functionality.js +13 -0
- package/src/lib/helpers.js +320 -0
- package/src/lib/mockData/index.js +76 -0
- package/src/lib/session/index.js +31 -0
- package/src/lib/validation.js +4 -0
- package/src/logo.svg +1 -0
- package/src/pages/WhatsappMainBox/index.js +574 -0
- package/src/reportWebVitals.js +13 -0
- package/src/services/deliveryStatus.js +27 -0
- package/src/setupTests.js +5 -0
- package/src/utils/chatSdk.js +14 -0
- package/src/utils/global.js +57 -0
- package/src/utils/media.js +79 -0
- package/src/view/component/BlockedContactSlide.js +134 -0
- package/src/view/component/Carousle/UpperMenuBar.js +106 -0
- package/src/view/component/Carousle/index.js +204 -0
- package/src/view/component/Chatbox.js/AudioRecorder.js +311 -0
- package/src/view/component/Chatbox.js/ChatBubbleReply.js +27 -0
- package/src/view/component/Chatbox.js/TakePhoto.js +363 -0
- package/src/view/component/Chatbox.js/index.js +856 -0
- package/src/view/component/Chatbox.js/styles.css +231 -0
- package/src/view/component/Contact/index.js +56 -0
- package/src/view/component/Contact/styles.css +208 -0
- package/src/view/component/ContactInfo/index.js +543 -0
- package/src/view/component/ContactInfo/styles.css +289 -0
- package/src/view/component/Context/index.js +3 -0
- package/src/view/component/DialogBox.js +15 -0
- package/src/view/component/ImageCropper/ImageCropper.js +128 -0
- package/src/view/component/Loader/Loader.js +52 -0
- package/src/view/component/Loader/UserPagingLoader.js +62 -0
- package/src/view/component/MainChatBox/index.js +819 -0
- package/src/view/component/MainChatBox/styles.css +124 -0
- package/src/view/component/Menu/index.js +261 -0
- package/src/view/component/Menu/styles.css +68 -0
- package/src/view/component/Profile/ProfileInfoContainer.js +112 -0
- package/src/view/component/Profile/ProfileUpdate.js +178 -0
- package/src/view/component/Profile/TakeProfilePhoto.js +391 -0
- package/src/view/component/Profile/index.js +550 -0
- package/src/view/component/Profile/styles.css +370 -0
- package/src/view/component/ReplyChatMessage/ReplyChatMessage.js +48 -0
- package/src/view/component/SeachBar/index.js +106 -0
- package/src/view/component/SeachBar/styles.css +53 -0
- package/src/view/component/Siderbar/index.js +512 -0
- package/src/view/component/Siderbar/styles.css +138 -0
- package/src/view/component/Toaster/Toaster.js +117 -0
- package/src/view/component/UserDetailsCard/UserDetailCard.js +337 -0
- package/src/view/component/deleteMessageMoal.js +80 -0
- package/src/view/component/emoji/index.js +22 -0
- package/src/view/component/emoji/sstyles.css +0 -0
- package/src/view/component/forwardData/index.js +327 -0
- package/src/view/component/forwardData/styles.css +112 -0
- package/src/view/component/forwardPopup/index.js +55 -0
- package/src/view/component/forwardPopup/styles.css +144 -0
- package/src/view/component/mediaList/index.js +92 -0
- package/src/view/component/menuDialog/index.js +71 -0
- package/src/view/component/menuDialog/styles.css +24 -0
- package/src/view/component/pagination/pagination.js +52 -0
- package/src/view/component/pagination/paginationForMsg.js +43 -0
- package/src/view/component/sidebarChat/index.js +321 -0
- package/src/view/component/sidebarChat/styles.css +109 -0
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
.chatbox_body {
|
|
2
|
+
height: calc(100% - 70px); /* 70px is height of chat input send */
|
|
3
|
+
background-color: aliceblue;
|
|
4
|
+
overflow-y: auto;
|
|
5
|
+
padding: 30px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.chatbox_body .chat_message {
|
|
9
|
+
padding: 6px 7px 8px 9px;
|
|
10
|
+
background-color: var(--gray_color);
|
|
11
|
+
font-size: 16px;
|
|
12
|
+
width: fit-content;
|
|
13
|
+
border-radius: 5px;
|
|
14
|
+
margin-bottom: 2px;
|
|
15
|
+
color:var(--black)
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
.chatbox_body .chat_message_recive {
|
|
20
|
+
padding: 6px 7px 8px 9px;
|
|
21
|
+
background-color: var(--gray_color);
|
|
22
|
+
font-size: 16px;
|
|
23
|
+
width: fit-content;
|
|
24
|
+
border-radius: 5px;
|
|
25
|
+
margin-bottom: 2px;
|
|
26
|
+
color:var(--black)
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.chatbox_body .chat_message:hover{
|
|
30
|
+
cursor: pointer;
|
|
31
|
+
background-color:var(--chat_hover)
|
|
32
|
+
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.chatbox_body .chat_message_recive:hover{
|
|
36
|
+
cursor: pointer;
|
|
37
|
+
background-color:var(--chat_hover)
|
|
38
|
+
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.chatbox_body .chat_message:hover .arrow{
|
|
42
|
+
display: block !important;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.chatbox_body .chat_message_recive:hover .arrow{
|
|
46
|
+
display: block !important;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.css-tlc64q-MuiPaper-root-MuiDialog-paper{
|
|
50
|
+
max-width: 315px !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.chatbox_body .chatText:hover .emoji{
|
|
54
|
+
display: block !important;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.MuiDialog-container{
|
|
58
|
+
justify-content: none !important;
|
|
59
|
+
background-color: none !important;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.chatbox_body .chatText .emoji{
|
|
63
|
+
color:var(--icon_color);
|
|
64
|
+
background-color: var(--contact-profile-bg);
|
|
65
|
+
border-radius: 20px;
|
|
66
|
+
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.emoji_header span{
|
|
70
|
+
font-size: x-large;
|
|
71
|
+
padding: 6px 5px 5px 6px;
|
|
72
|
+
cursor: pointer;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.emoji_header{
|
|
76
|
+
/* transform: translateY(100px);
|
|
77
|
+
transition: 0.2s; */
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.MuiPaper-root-MuiDialog-paper{
|
|
81
|
+
background-color: none !important;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.MuiDialog-paper{
|
|
85
|
+
background-color: none !important;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.chatbox_body .chat_message .arrow{
|
|
89
|
+
position: absolute;
|
|
90
|
+
left: 28px;
|
|
91
|
+
top: -18px;
|
|
92
|
+
background: var(--chat_hover);
|
|
93
|
+
display: flex;
|
|
94
|
+
align-content: end;
|
|
95
|
+
text-align: end;
|
|
96
|
+
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.chatbox_body .chat_message .emoji_gif{
|
|
100
|
+
position: absolute;
|
|
101
|
+
left: 35px;
|
|
102
|
+
top: 15px;
|
|
103
|
+
background: var(--chat_hover);
|
|
104
|
+
display: flex;
|
|
105
|
+
align-content: end;
|
|
106
|
+
text-align: end;
|
|
107
|
+
border-radius: 15px;
|
|
108
|
+
/* width: 22px;
|
|
109
|
+
height: 20px; */
|
|
110
|
+
font-size: large;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.chatbox_body .chat_message .emoji{
|
|
114
|
+
position: absolute;
|
|
115
|
+
left: 152px;
|
|
116
|
+
top: 6px;
|
|
117
|
+
/* background: var(--chat_hover); */
|
|
118
|
+
display: flex;
|
|
119
|
+
align-content: end;
|
|
120
|
+
text-align: end;
|
|
121
|
+
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.css-tlc64q-MuiPaper-root-MuiDialog-paper{
|
|
125
|
+
background-color: none !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
.chat_name {
|
|
131
|
+
position: absolute;
|
|
132
|
+
top: -20px;
|
|
133
|
+
font-weight: bolder;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
form .footerChat {
|
|
137
|
+
position: relative;
|
|
138
|
+
display: flex;
|
|
139
|
+
padding: 7px 16px;
|
|
140
|
+
align-items: center;
|
|
141
|
+
background-color:var(--gray_color);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
form .footer {
|
|
145
|
+
width: 52%;
|
|
146
|
+
position: relative;
|
|
147
|
+
display: flex;
|
|
148
|
+
padding-top: 8px 0px;
|
|
149
|
+
align-items: center;
|
|
150
|
+
background-color: #ebebeb;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.css-yiavyu-MuiBackdrop-root-MuiDialog-backdrop{
|
|
154
|
+
background-color: hsla(0,0%,100%,0.85) !important;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.css-1t1j96h-MuiPaper-root-MuiDialog-paper{
|
|
158
|
+
width:33% !important;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.css-hz1bth-MuiDialog-container{
|
|
162
|
+
padding:10px 0px 0px 0px ;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/* font-size: 0.6875rem;
|
|
166
|
+
position: relative;
|
|
167
|
+
top: 13px;
|
|
168
|
+
padding: 0px 4px;
|
|
169
|
+
left: 2px;
|
|
170
|
+
color: var(--chat_timing); */
|
|
171
|
+
.chat_time {
|
|
172
|
+
font-size: 0.6875rem;
|
|
173
|
+
position: relative;
|
|
174
|
+
top: 13px;
|
|
175
|
+
padding: 0px 4px;
|
|
176
|
+
left: 2px;
|
|
177
|
+
color:var(--chat_timing)
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.chat_recive {
|
|
181
|
+
margin-left: auto;
|
|
182
|
+
background-color: var(--sender_chatbg) !important;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.chat_recive .arrow{
|
|
186
|
+
position: absolute;
|
|
187
|
+
left: 28px;
|
|
188
|
+
top: -18px;
|
|
189
|
+
background: var(--sender_chatbg) !important;
|
|
190
|
+
display: flex;
|
|
191
|
+
align-content: end;
|
|
192
|
+
text-align: end;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
/* .chat_recive :hover{
|
|
196
|
+
cursor: pointer;
|
|
197
|
+
background-color:var(--sender_chatbg)
|
|
198
|
+
|
|
199
|
+
} */
|
|
200
|
+
|
|
201
|
+
.chat_footer form {
|
|
202
|
+
flex: 1;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.chat_footer textarea {
|
|
206
|
+
width: 100%;
|
|
207
|
+
padding: 9px 11px 12px;
|
|
208
|
+
margin: 2px 5px;
|
|
209
|
+
border: none;
|
|
210
|
+
outline: none;
|
|
211
|
+
border-radius: 5px;
|
|
212
|
+
color: var(--black);
|
|
213
|
+
background-color: var(--input_bg);
|
|
214
|
+
margin-left: 10px;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
.EmojiPickerReact {
|
|
219
|
+
height:320px !important;
|
|
220
|
+
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.EmojiPickerReact .epr-search-container input.epr-search{
|
|
224
|
+
transition:unset !important;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
.emoji-picker-react{
|
|
229
|
+
position: absolute !important;
|
|
230
|
+
}
|
|
231
|
+
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import React, { useEffect, useState } from "react";
|
|
2
|
+
import CloseIcon from "@mui/icons-material/Close";
|
|
3
|
+
import { Avatar } from "@mui/material";
|
|
4
|
+
import "./styles.css";
|
|
5
|
+
import BlockIcon from "@mui/icons-material/Block";
|
|
6
|
+
import SearchBar from "../SeachBar";
|
|
7
|
+
import "./styles.css"
|
|
8
|
+
import KeyboardBackspaceIcon from '@mui/icons-material/KeyboardBackspace';
|
|
9
|
+
|
|
10
|
+
function ContactInfo(props) {
|
|
11
|
+
const [isShow , setIsShow] = useState(false)
|
|
12
|
+
|
|
13
|
+
const closeHandler = () => {
|
|
14
|
+
// props?.mediaClose();
|
|
15
|
+
props?. mediaContact();
|
|
16
|
+
|
|
17
|
+
props?.handler();
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
// const mediaHandler = ()=>{
|
|
22
|
+
// setIsShow(true);
|
|
23
|
+
// }
|
|
24
|
+
|
|
25
|
+
return (
|
|
26
|
+
<>
|
|
27
|
+
|
|
28
|
+
{props?.mediaShow ? (
|
|
29
|
+
<div className="contact_container">
|
|
30
|
+
<div
|
|
31
|
+
className="contact_header header"
|
|
32
|
+
|
|
33
|
+
>
|
|
34
|
+
<KeyboardBackspaceIcon onClick={closeHandler} className="pointer" />
|
|
35
|
+
<p>media info</p>
|
|
36
|
+
</div>
|
|
37
|
+
<div>
|
|
38
|
+
{/* <div className="contact_profile border border-1-light">
|
|
39
|
+
<SearchBar />
|
|
40
|
+
</div>
|
|
41
|
+
|
|
42
|
+
<div className="bg-white">
|
|
43
|
+
<p className="text_Color text-align-center searchmsg text-center">
|
|
44
|
+
Seach for meassage with
|
|
45
|
+
</p>
|
|
46
|
+
</div> */}
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
) : (
|
|
50
|
+
""
|
|
51
|
+
)}
|
|
52
|
+
</>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export default ContactInfo;
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
.contact_profile .profile_image {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
align-content: center;
|
|
5
|
+
width: 200px !important;
|
|
6
|
+
height: 200px !important;
|
|
7
|
+
margin-top: 25px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.contact_container {
|
|
11
|
+
max-width: 30vw;
|
|
12
|
+
background-color:var(--contact-profile-bg);
|
|
13
|
+
overflow: auto;
|
|
14
|
+
height: 100vh;
|
|
15
|
+
right: 0px;
|
|
16
|
+
top: 0px
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.contact_container .contact_header {
|
|
20
|
+
position: fixed;
|
|
21
|
+
display: flex;
|
|
22
|
+
align-items: center;
|
|
23
|
+
background-color: var(--gray_color);
|
|
24
|
+
height: 62px;
|
|
25
|
+
padding-left: 25px;
|
|
26
|
+
border-left: 1px solid var(--border_color);
|
|
27
|
+
width: 100%
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.contact_header p {
|
|
31
|
+
color : var(--black)
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.contact_profile {
|
|
35
|
+
position: relative;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.text p {
|
|
39
|
+
display: flex;
|
|
40
|
+
align-items: center;
|
|
41
|
+
padding-top: 17px;
|
|
42
|
+
padding-left: 20px;
|
|
43
|
+
padding-right: 30px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.text p span {
|
|
47
|
+
margin-left: 20px;
|
|
48
|
+
font-size: 17px;
|
|
49
|
+
position: relative;
|
|
50
|
+
width: 100%;
|
|
51
|
+
color: var(--black);
|
|
52
|
+
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
p .btnn {
|
|
57
|
+
color: var(--danger) !important
|
|
58
|
+
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.contact_container .contactp {
|
|
62
|
+
position: relative;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
text {
|
|
66
|
+
position: relative;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.text p svg {
|
|
70
|
+
height: 20px;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.text p .svgg {
|
|
74
|
+
color: var(--danger);
|
|
75
|
+
height: 24px;
|
|
76
|
+
width: 24px;
|
|
77
|
+
position: relative;
|
|
78
|
+
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.contact-container .contact_profile {
|
|
82
|
+
position: relative;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.contact-container .text {
|
|
86
|
+
|
|
87
|
+
position: relative;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
div .contact_status {
|
|
91
|
+
position: relative;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
div .contactsocialInfo {
|
|
95
|
+
position: relative;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.contact_container .textt {
|
|
99
|
+
position: relative;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.contact_status .bio {
|
|
103
|
+
color: var(--black);
|
|
104
|
+
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.contact_container .textt {
|
|
108
|
+
background-color: var(--primary-white);
|
|
109
|
+
padding-left: 15px;
|
|
110
|
+
margin-top: 10px;
|
|
111
|
+
position: relative;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.contact_container .contactp {
|
|
115
|
+
position: relative;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.txt {
|
|
119
|
+
font-size: 14px;
|
|
120
|
+
padding-left: 42px !important;
|
|
121
|
+
padding-top: 0px !important
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.dlttxt {
|
|
125
|
+
padding-bottom: 17px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.showMe {
|
|
129
|
+
position: relative;
|
|
130
|
+
animation: contactPro 0.75s;
|
|
131
|
+
animation-iteration-count: 1;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.svgg .btnn {
|
|
135
|
+
color: var(--danger) !important
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
@keyframes contactPro {
|
|
140
|
+
0% {
|
|
141
|
+
opacity: 0;
|
|
142
|
+
transform: translateY(-50px);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
30% {
|
|
146
|
+
opacity: 0;
|
|
147
|
+
transform: translateY(-50px);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
100% {
|
|
151
|
+
opacity: 1;
|
|
152
|
+
transform: translateY(0);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.contact_container .contact_header p {
|
|
157
|
+
font-size: 16px;
|
|
158
|
+
padding-top: 15px;
|
|
159
|
+
padding-left: 30px;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.contact_profile {
|
|
163
|
+
display: flex;
|
|
164
|
+
justify-content: center;
|
|
165
|
+
background-color: var(--primary-white);
|
|
166
|
+
margin-top: 60px
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
.contact_name {
|
|
172
|
+
display: flex;
|
|
173
|
+
justify-content: center;
|
|
174
|
+
background:var(--primary-white);
|
|
175
|
+
padding-top: 15px;
|
|
176
|
+
color: var(--black);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.contact_name div {
|
|
180
|
+
font-size: 24px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.contact_name div p {
|
|
184
|
+
font-size: 16px;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.contactsocialInfo {
|
|
188
|
+
background-color:var(--primary-white);
|
|
189
|
+
margin-top: 10px;
|
|
190
|
+
padding: 17px 30px 17px 30px;
|
|
191
|
+
display: flex;
|
|
192
|
+
justify-content: space-between
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.contact_status {
|
|
196
|
+
background-color: var(--primary-white);
|
|
197
|
+
padding: 17px 30px 5px 30px;
|
|
198
|
+
line-height: 0.8;
|
|
199
|
+
margin-top: 10px
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
div .searchmsg {
|
|
203
|
+
padding: 72px 50px 72px 50px;
|
|
204
|
+
font-size: 0.875rem;
|
|
205
|
+
background-color: var(--primary-white);
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
}
|