nestiq-component-library 1.0.6 → 1.0.8
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/dist/components/Button/Button.js +6 -0
- package/dist/components/ImageListPopup/ImageListPopup.js +26 -0
- package/dist/components/Popup/Popup.js +12 -0
- package/dist/index.es.js +7 -17
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +7 -17
- package/dist/index.js.map +1 -1
- package/package.json +35 -36
- package/rollup.config.mjs +31 -40
- package/src/assets/images/icon_share 1.svg +3 -0
- package/src/assets/images/locationIconBlack.svg +4 -0
- package/src/components/ImageListPopup/ImageListPopup.css +49 -107
- package/src/components/ImageListPopup/ImageListPopup.tsx +62 -100
- package/src/components/Popup/Popup.tsx +28 -28
- package/src/components/PropertyDetailsHeader/PropertyDetailsHeader.css +46 -0
- package/src/components/PropertyDetailsHeader/PropertyDetailsHeader.tsx +71 -0
- package/src/components/SharePopup/PopUp.css +359 -0
- package/src/components/SharePopup/PopUp.tsx +99 -0
- package/src/index.tsx +3 -3
- package/dist/assets/images/blackarrow-Right.svg +0 -3
- package/dist/assets/images/blckarrow-Left.svg +0 -3
- package/dist/assets/images/icon_close 2.png +0 -0
- package/src/assets/images/blackarrow-Right.svg +0 -3
- package/src/assets/images/blckarrow-Left.svg +0 -3
|
@@ -1,100 +1,62 @@
|
|
|
1
|
-
import React, { useState } from "react";
|
|
2
|
-
import "bootstrap/dist/css/bootstrap.min.css";
|
|
3
|
-
import "./ImageListPopup.css";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
const
|
|
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
|
-
className="main-image"
|
|
64
|
-
/>
|
|
65
|
-
<div
|
|
66
|
-
className="rounded-circle border btn-next"
|
|
67
|
-
role="button"
|
|
68
|
-
onClick={handleNext}
|
|
69
|
-
>
|
|
70
|
-
<img
|
|
71
|
-
src={blcIconArrowRight}
|
|
72
|
-
className="blackArrow"
|
|
73
|
-
alt="Right Arrow"
|
|
74
|
-
></img>
|
|
75
|
-
</div>
|
|
76
|
-
{/*<button*/}
|
|
77
|
-
{/* className="btn-next"*/}
|
|
78
|
-
{/* onClick={handleNext}*/}
|
|
79
|
-
{/* disabled={currentIndex === images.length - 1}*/}
|
|
80
|
-
{/*>*/}
|
|
81
|
-
{/* >*/}
|
|
82
|
-
{/*</button>*/}
|
|
83
|
-
</div>
|
|
84
|
-
<div className="popup-thumbnails">
|
|
85
|
-
{images.map((image, index) => (
|
|
86
|
-
<img
|
|
87
|
-
key={index}
|
|
88
|
-
src={image.src}
|
|
89
|
-
alt={image.title}
|
|
90
|
-
className={`thumbnail ${index === currentIndex ? "active" : ""}`}
|
|
91
|
-
onClick={() => handleThumbnailClick(index)}
|
|
92
|
-
/>
|
|
93
|
-
))}
|
|
94
|
-
</div>
|
|
95
|
-
</div>
|
|
96
|
-
</div>
|
|
97
|
-
);
|
|
98
|
-
};
|
|
99
|
-
|
|
100
|
-
export default ImageListPopup;
|
|
1
|
+
import React, { useState } from "react";
|
|
2
|
+
import "bootstrap/dist/css/bootstrap.min.css";
|
|
3
|
+
import "./ImageListPopup.css";
|
|
4
|
+
|
|
5
|
+
interface Image {
|
|
6
|
+
src: string;
|
|
7
|
+
title: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
interface ImageListPopupProps {
|
|
11
|
+
images: Image[];
|
|
12
|
+
onClose: () => void;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
const ImageListPopup: React.FC<ImageListPopupProps> = ({ images, onClose }) => {
|
|
16
|
+
const [currentIndex, setCurrentIndex] = useState(0);
|
|
17
|
+
|
|
18
|
+
const handlePrevious = () => {
|
|
19
|
+
setCurrentIndex((prevIndex) => (prevIndex > 0 ? prevIndex - 1 : prevIndex));
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
const handleNext = () => {
|
|
23
|
+
setCurrentIndex((prevIndex) =>
|
|
24
|
+
prevIndex < images.length - 1 ? prevIndex + 1 : prevIndex,
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<div className="popup-overlay">
|
|
30
|
+
<div className="popup-container">
|
|
31
|
+
<div className="popup-header">
|
|
32
|
+
<span>{images[currentIndex].title}</span>
|
|
33
|
+
<button className="btn-close" onClick={onClose}></button>
|
|
34
|
+
</div>
|
|
35
|
+
<div className="popup-body">
|
|
36
|
+
<img
|
|
37
|
+
src={images[currentIndex].src}
|
|
38
|
+
alt={images[currentIndex].title}
|
|
39
|
+
className="img-fluid"
|
|
40
|
+
/>
|
|
41
|
+
</div>
|
|
42
|
+
<div className="popup-footer">
|
|
43
|
+
{images.length > 1 && (
|
|
44
|
+
<>
|
|
45
|
+
<button
|
|
46
|
+
className="btn btn-secondary me-2"
|
|
47
|
+
onClick={handlePrevious}
|
|
48
|
+
>
|
|
49
|
+
Previous
|
|
50
|
+
</button>
|
|
51
|
+
<button className="btn btn-secondary" onClick={handleNext}>
|
|
52
|
+
Next
|
|
53
|
+
</button>
|
|
54
|
+
</>
|
|
55
|
+
)}
|
|
56
|
+
</div>
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
);
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export default ImageListPopup;
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import closeIcon from "
|
|
3
|
-
import "./Popup.css";
|
|
4
|
-
|
|
5
|
-
interface PopupProps {
|
|
6
|
-
children: React.ReactNode;
|
|
7
|
-
onCloseClick: () => void;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
const Popup: React.FC<PopupProps> = ({ onCloseClick, children }) => {
|
|
11
|
-
return (
|
|
12
|
-
<div className="popup-overlay">
|
|
13
|
-
<div className="shareSection col-12 d-flex position-relative flex-column mx-auto justify-content-center col-5 col-lg-6 d-flex gap-4">
|
|
14
|
-
<div className="end-0 top-0 position-absolute ">
|
|
15
|
-
<img
|
|
16
|
-
src={closeIcon}
|
|
17
|
-
alt="close"
|
|
18
|
-
className="closeIcon me-2"
|
|
19
|
-
onClick={onCloseClick}
|
|
20
|
-
/>
|
|
21
|
-
</div>
|
|
22
|
-
{children}
|
|
23
|
-
</div>
|
|
24
|
-
</div>
|
|
25
|
-
);
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
export default Popup;
|
|
1
|
+
import React from "react";
|
|
2
|
+
import closeIcon from "src/assets/images/icon_close 2.png";
|
|
3
|
+
import "./Popup.css";
|
|
4
|
+
|
|
5
|
+
interface PopupProps {
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
onCloseClick: () => void;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const Popup: React.FC<PopupProps> = ({ onCloseClick, children }) => {
|
|
11
|
+
return (
|
|
12
|
+
<div className="popup-overlay">
|
|
13
|
+
<div className="shareSection col-12 d-flex position-relative flex-column mx-auto justify-content-center col-5 col-lg-6 d-flex gap-4">
|
|
14
|
+
<div className="end-0 top-0 position-absolute ">
|
|
15
|
+
<img
|
|
16
|
+
src={closeIcon}
|
|
17
|
+
alt="close"
|
|
18
|
+
className="closeIcon me-2"
|
|
19
|
+
onClick={onCloseClick}
|
|
20
|
+
/>
|
|
21
|
+
</div>
|
|
22
|
+
{children}
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export default Popup;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
.compact {
|
|
2
|
+
height: 194px;
|
|
3
|
+
border-radius: 32px;
|
|
4
|
+
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
5
|
+
background-color: #f2f2f2;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.header_Text {
|
|
9
|
+
margin-top: 140px;
|
|
10
|
+
font-size: 32px;
|
|
11
|
+
line-height: normal;
|
|
12
|
+
color: #1b1b1b;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.vector svg {
|
|
16
|
+
width: 16px;
|
|
17
|
+
height: 21.5px;
|
|
18
|
+
flex-grow: 0;
|
|
19
|
+
margin: 4.2px 10px 4.2px 0;
|
|
20
|
+
fill: #344041;
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.propText {
|
|
25
|
+
height: 30px;
|
|
26
|
+
font-size: 16px;
|
|
27
|
+
letter-spacing: normal;
|
|
28
|
+
text-align: center;
|
|
29
|
+
color: #344041;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.v_share {
|
|
33
|
+
cursor: pointer;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.fetch_section {
|
|
37
|
+
margin-top: 90px;
|
|
38
|
+
height: 60px;
|
|
39
|
+
}
|
|
40
|
+
@media (min-width: 800px) {
|
|
41
|
+
.Pheader {
|
|
42
|
+
max-width: 1750px;
|
|
43
|
+
margin: 0 auto;
|
|
44
|
+
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import React, { useState } from "react";
|
|
2
|
+
// import { FormattedMessage } from "react-intl";
|
|
3
|
+
import ShareIcon from "../../../../../assets/Images/icon_share 1.svg";
|
|
4
|
+
import locationIcon from "../../../../../assets/Images/locationIconBlack.svg";
|
|
5
|
+
import PopUp from "../SharePopup/PopUp";
|
|
6
|
+
import "./PropertyDetailsHeader.css";
|
|
7
|
+
|
|
8
|
+
export default function PropertyDetailsHeader() {
|
|
9
|
+
|
|
10
|
+
const [showPopUp, setShowPopUp] = useState(false);
|
|
11
|
+
|
|
12
|
+
const handlePopUp = () => {
|
|
13
|
+
setShowPopUp(!showPopUp);
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<div className="Pheader compact d-flex col-12 col-lg-12 position-relative mt-5 ">
|
|
18
|
+
<div className="header_Text d-flex col-lg-7 col-md-9 mt-4 ms-4 ">
|
|
19
|
+
<strong>
|
|
20
|
+
Einziehen ohne einen Pinselstrich - Kernsaniertes Einfamilienhaus in
|
|
21
|
+
top Lage
|
|
22
|
+
</strong>
|
|
23
|
+
</div>
|
|
24
|
+
<div className="header_Text text-truncate col-lg-6 col-md-7 d-flex flex-row position-absolute ms-4">
|
|
25
|
+
<img src={locationIcon} alt="Location Icon" className="vector me-2" />
|
|
26
|
+
{/* {property && (
|
|
27
|
+
<div className="propText text-truncate col-lg-6 col-md-6 d-flex align-items-center">
|
|
28
|
+
{property.city}
|
|
29
|
+
</div>
|
|
30
|
+
)} */}
|
|
31
|
+
</div>
|
|
32
|
+
<div className="d-flex col-lg-5 col-md-6 col-sm-5 justify-content-end position-absolute end-0 mt-4">
|
|
33
|
+
{/* <img src={Hearticon} alt="Location Icon" className="v_share me-3" /> */}
|
|
34
|
+
<img
|
|
35
|
+
src={ShareIcon}
|
|
36
|
+
alt="Location Icon"
|
|
37
|
+
className="v_share me-3"
|
|
38
|
+
onClick={handlePopUp}
|
|
39
|
+
/>
|
|
40
|
+
</div>
|
|
41
|
+
<div className="fetch_section d-flex align-items-center flex-row col-lg-5 col-md-6 col-sm-5 justify-content-end position-absolute end-0">
|
|
42
|
+
{/* {property && (
|
|
43
|
+
<div className=" propText col-lg-3 col-md-3 h-100 d-flex align-items-center justify-content-center ">
|
|
44
|
+
{property?.evaluation?.askingPrice} € <br />
|
|
45
|
+
Kaufpreis
|
|
46
|
+
</div>
|
|
47
|
+
)}
|
|
48
|
+
{property && (
|
|
49
|
+
<div className="propText col-lg-3 col-md-3 d-flex h-100 align-items-center justify-content-center">
|
|
50
|
+
{property.constructedArea} m² <br />
|
|
51
|
+
<FormattedMessage id="LIVING_SPACE" />
|
|
52
|
+
</div>
|
|
53
|
+
)}
|
|
54
|
+
{property && (
|
|
55
|
+
<div className="propText col-lg-3 col-md-3 d-flex h-100 align-items-center justify-content-center">
|
|
56
|
+
{property.rooms} <br />
|
|
57
|
+
<FormattedMessage id="ROOMS" />
|
|
58
|
+
</div>
|
|
59
|
+
)}
|
|
60
|
+
{property && (
|
|
61
|
+
<div className="propText col-lg-3 col-md-3 d-flex h-100 align-items-center justify-content-center">
|
|
62
|
+
{property.propertyArea} m²
|
|
63
|
+
<br />
|
|
64
|
+
<FormattedMessage id="Grundstück" />
|
|
65
|
+
</div>
|
|
66
|
+
)} */}
|
|
67
|
+
</div>
|
|
68
|
+
{showPopUp && <PopUp onClick={handlePopUp} />}
|
|
69
|
+
</div>
|
|
70
|
+
);
|
|
71
|
+
}
|
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
.popup-overlay {
|
|
2
|
+
position: fixed; /* Fixed position to cover the whole screen */
|
|
3
|
+
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
right: 0;
|
|
6
|
+
bottom: 0;
|
|
7
|
+
background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
|
|
8
|
+
display: flex; /* Flexbox to center the popup */
|
|
9
|
+
justify-content: center; /* Center horizontally */
|
|
10
|
+
align-items: center; /* Center vertically */
|
|
11
|
+
z-index: 2000; /* Ensure it's above other content */
|
|
12
|
+
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.shareSection {
|
|
16
|
+
height: 340px;
|
|
17
|
+
padding: 40px;
|
|
18
|
+
border-radius: 16px;
|
|
19
|
+
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
20
|
+
border: solid 1px #d7d9e3;
|
|
21
|
+
background-color: #fff;
|
|
22
|
+
|
|
23
|
+
}
|
|
24
|
+
.popUpHeader {
|
|
25
|
+
height: 48px;
|
|
26
|
+
font-size: 32px;
|
|
27
|
+
font-weight: 600;
|
|
28
|
+
color: #1b1b1b;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.closeIcon {
|
|
32
|
+
width: 16px;
|
|
33
|
+
height: 16px;
|
|
34
|
+
cursor: pointer;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.socialMediaIconsSection {
|
|
38
|
+
gap: 60px !important;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.socialMediaIcons {
|
|
42
|
+
width: 28px !important;
|
|
43
|
+
height: 28px !important;
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.socialMediaIconText {
|
|
48
|
+
height: 36px;
|
|
49
|
+
font-size: 13px;
|
|
50
|
+
font-weight: 500;
|
|
51
|
+
line-height: 3;
|
|
52
|
+
color: #344041;
|
|
53
|
+
cursor: pointer;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.popup_search-input {
|
|
57
|
+
height: 60px;
|
|
58
|
+
padding-inline-end: 190px;
|
|
59
|
+
font-size: 20px;
|
|
60
|
+
box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
61
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.popup_search-input::placeholder {
|
|
65
|
+
font-size: 20px;
|
|
66
|
+
color: rgba(140, 140, 140, 0.5);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.popup_search-input:focus {
|
|
70
|
+
outline: none;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.popupcustom-button {
|
|
74
|
+
height: 35px;
|
|
75
|
+
color: #000;
|
|
76
|
+
cursor: pointer;
|
|
77
|
+
border-color: #ffb525;
|
|
78
|
+
right: 0;
|
|
79
|
+
z-index: 1;
|
|
80
|
+
background-color: #ffb525;
|
|
81
|
+
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
82
|
+
}
|
|
83
|
+
.button-text {
|
|
84
|
+
width: 115px;
|
|
85
|
+
height: 19px;
|
|
86
|
+
flex-grow: 0;
|
|
87
|
+
font-family: Inter;
|
|
88
|
+
font-size: 16px;
|
|
89
|
+
font-weight: 500;
|
|
90
|
+
font-stretch: normal;
|
|
91
|
+
font-style: normal;
|
|
92
|
+
line-height: normal;
|
|
93
|
+
letter-spacing: normal;
|
|
94
|
+
text-align: center;
|
|
95
|
+
}
|
|
96
|
+
.button_success-right {
|
|
97
|
+
width: 184px;
|
|
98
|
+
height: 43px;
|
|
99
|
+
flex-grow: 0;
|
|
100
|
+
display: flex;
|
|
101
|
+
flex-direction: row;
|
|
102
|
+
justify-content: center;
|
|
103
|
+
align-items: center;
|
|
104
|
+
gap: 8px;
|
|
105
|
+
padding: 12px 24px;
|
|
106
|
+
border-radius: 16px;
|
|
107
|
+
border-color: #000;
|
|
108
|
+
background-color: transparent;
|
|
109
|
+
}
|
|
110
|
+
.button_success-left {
|
|
111
|
+
width: 200px;
|
|
112
|
+
height: 43px;
|
|
113
|
+
flex-grow: 0;
|
|
114
|
+
display: flex;
|
|
115
|
+
flex-direction: row;
|
|
116
|
+
justify-content: center;
|
|
117
|
+
align-items: center;
|
|
118
|
+
gap: 8px;
|
|
119
|
+
padding: 12px 24px;
|
|
120
|
+
border-radius: 16px;
|
|
121
|
+
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
122
|
+
background-color: #ffb525;
|
|
123
|
+
}
|
|
124
|
+
.shareSection-Success {
|
|
125
|
+
height: 510px;
|
|
126
|
+
padding: 40px;
|
|
127
|
+
border-radius: 16px;
|
|
128
|
+
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
129
|
+
border: solid 1px #d7d9e3;
|
|
130
|
+
background-color: #fff;
|
|
131
|
+
}
|
|
132
|
+
.shareSection-Error {
|
|
133
|
+
height: 400px;
|
|
134
|
+
padding:10px;
|
|
135
|
+
border-radius: 16px;
|
|
136
|
+
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
137
|
+
border: solid 1px #d7d9e3;
|
|
138
|
+
background-color: #fff;
|
|
139
|
+
}
|
|
140
|
+
.MessageShareSection {
|
|
141
|
+
height: 513px;
|
|
142
|
+
padding: 14px 14px;
|
|
143
|
+
border-radius: 16px;
|
|
144
|
+
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
145
|
+
border: solid 1px #d7d9e3;
|
|
146
|
+
background-color: #fff;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.popup-tags {
|
|
150
|
+
font-size: large;
|
|
151
|
+
font-weight: bold;
|
|
152
|
+
}
|
|
153
|
+
.button_icon-left {
|
|
154
|
+
width: 184px;
|
|
155
|
+
height: 43px;
|
|
156
|
+
flex-grow: 0;
|
|
157
|
+
display: flex;
|
|
158
|
+
flex-direction: row;
|
|
159
|
+
justify-content: center;
|
|
160
|
+
align-items: center;
|
|
161
|
+
gap: 8px;
|
|
162
|
+
padding: 12px 24px;
|
|
163
|
+
border-radius: 16px;
|
|
164
|
+
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
165
|
+
background-color: #ffb525;
|
|
166
|
+
}
|
|
167
|
+
.button-text {
|
|
168
|
+
width: 85px;
|
|
169
|
+
height: 19px;
|
|
170
|
+
flex-grow: 0;
|
|
171
|
+
font-family: Inter;
|
|
172
|
+
font-size: 16px;
|
|
173
|
+
font-weight: 500;
|
|
174
|
+
font-stretch: normal;
|
|
175
|
+
font-style: normal;
|
|
176
|
+
line-height: normal;
|
|
177
|
+
letter-spacing: normal;
|
|
178
|
+
text-align: center;
|
|
179
|
+
}
|
|
180
|
+
.button_icon-right {
|
|
181
|
+
width: 184px;
|
|
182
|
+
height: 43px;
|
|
183
|
+
flex-grow: 0;
|
|
184
|
+
display: flex;
|
|
185
|
+
flex-direction: row;
|
|
186
|
+
justify-content: center;
|
|
187
|
+
align-items: center;
|
|
188
|
+
gap: 8px;
|
|
189
|
+
padding: 12px 24px;
|
|
190
|
+
border-radius: 16px;
|
|
191
|
+
border-color: #000;
|
|
192
|
+
background-color: transparent;
|
|
193
|
+
}
|
|
194
|
+
.circle {
|
|
195
|
+
height: 55px;
|
|
196
|
+
width: 55px;
|
|
197
|
+
background-color: transparent;
|
|
198
|
+
border-radius: 50%;
|
|
199
|
+
border-style: solid;
|
|
200
|
+
border-color: #000;
|
|
201
|
+
border-width: 2px;
|
|
202
|
+
}
|
|
203
|
+
.Line-9, .Line-10 {
|
|
204
|
+
height: 1px;
|
|
205
|
+
flex-grow: 1;
|
|
206
|
+
background-color: rgba(140, 140, 140, 0.5);
|
|
207
|
+
max-width:23rem;
|
|
208
|
+
align-self: center;
|
|
209
|
+
align-content: center;
|
|
210
|
+
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.middle-container {
|
|
214
|
+
display: flex;
|
|
215
|
+
align-items: center;
|
|
216
|
+
justify-content: center;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.middle-text {
|
|
220
|
+
margin: 25px 25px;
|
|
221
|
+
}
|
|
222
|
+
.google-button{
|
|
223
|
+
width: 260px;
|
|
224
|
+
height: 45px;
|
|
225
|
+
flex-grow: 0;
|
|
226
|
+
display: flex;
|
|
227
|
+
flex-direction: row;
|
|
228
|
+
justify-content: center;
|
|
229
|
+
align-items: center;
|
|
230
|
+
gap: 8px;
|
|
231
|
+
padding: 12px 24px;
|
|
232
|
+
border-radius: 4px;
|
|
233
|
+
background-color: #000000;
|
|
234
|
+
background: linear-gradient(to top, #000 , #666 );
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
}
|
|
238
|
+
.Account-popup{
|
|
239
|
+
|
|
240
|
+
height: 713px;
|
|
241
|
+
padding: 10px;
|
|
242
|
+
border-radius: 16px;
|
|
243
|
+
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
244
|
+
border: solid 1px #d7d9e3;
|
|
245
|
+
background-color: #fff;
|
|
246
|
+
max-width: 1000px;
|
|
247
|
+
|
|
248
|
+
}
|
|
249
|
+
.lightertxt{
|
|
250
|
+
color: #797979;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.filter {
|
|
254
|
+
height: 343px;
|
|
255
|
+
align-self: stretch;
|
|
256
|
+
flex-grow: 0;
|
|
257
|
+
display: flex;
|
|
258
|
+
flex-direction: column;
|
|
259
|
+
gap: 2px;
|
|
260
|
+
padding: 32px;
|
|
261
|
+
border-radius: 32px;
|
|
262
|
+
box-shadow: inset 0 4px 10px 0 rgba(0, 0, 0, 0.15);
|
|
263
|
+
background-color: #f2f2f2;
|
|
264
|
+
}
|
|
265
|
+
.loginFilter {
|
|
266
|
+
height: 280px;
|
|
267
|
+
align-self: stretch;
|
|
268
|
+
flex-grow: 0;
|
|
269
|
+
display: flex;
|
|
270
|
+
flex-direction: column;
|
|
271
|
+
gap: 2px;
|
|
272
|
+
padding: 32px;
|
|
273
|
+
border-radius: 32px;
|
|
274
|
+
box-shadow: inset 0 4px 10px 0 rgba(0, 0, 0, 0.15);
|
|
275
|
+
background-color: #f2f2f2;
|
|
276
|
+
}
|
|
277
|
+
.radioLabel {
|
|
278
|
+
width: 176px;
|
|
279
|
+
height: 19px;
|
|
280
|
+
flex-grow: 0;
|
|
281
|
+
font-family: Inter;
|
|
282
|
+
font-size: 16px;
|
|
283
|
+
font-weight: normal;
|
|
284
|
+
font-stretch: normal;
|
|
285
|
+
font-style: normal;
|
|
286
|
+
line-height: normal;
|
|
287
|
+
letter-spacing: normal;
|
|
288
|
+
text-align: left;
|
|
289
|
+
color: #1b1b1b;
|
|
290
|
+
}
|
|
291
|
+
.goButton-text {
|
|
292
|
+
width: 78px;
|
|
293
|
+
height: 19px;
|
|
294
|
+
flex-grow: 0;
|
|
295
|
+
font-family: Inter;
|
|
296
|
+
font-size: 16px;
|
|
297
|
+
font-weight: 500;
|
|
298
|
+
font-stretch: normal;
|
|
299
|
+
font-style: normal;
|
|
300
|
+
line-height: normal;
|
|
301
|
+
letter-spacing: normal;
|
|
302
|
+
text-align: center;
|
|
303
|
+
color: #1b1b1b;
|
|
304
|
+
}
|
|
305
|
+
.placeholders {
|
|
306
|
+
width: 232px;
|
|
307
|
+
height: 45px;
|
|
308
|
+
flex-grow: 0;
|
|
309
|
+
display: flex;
|
|
310
|
+
flex-direction: row;
|
|
311
|
+
justify-content: flex-start;
|
|
312
|
+
align-items: center;
|
|
313
|
+
gap: 8px;
|
|
314
|
+
padding: 12px 24px;
|
|
315
|
+
border-radius: 4px;
|
|
316
|
+
background-image: linear-gradient(to top, #000 100%, #666 0%);
|
|
317
|
+
}
|
|
318
|
+
.TagW.active {
|
|
319
|
+
height: 40px;
|
|
320
|
+
flex-grow: 1;
|
|
321
|
+
display: flex;
|
|
322
|
+
flex-direction: row;
|
|
323
|
+
justify-content: center;
|
|
324
|
+
align-items: center;
|
|
325
|
+
gap: 6px;
|
|
326
|
+
padding: 0 24px;
|
|
327
|
+
border-radius: 16px;
|
|
328
|
+
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
329
|
+
background-image: linear-gradient(to top, #000 , #666);
|
|
330
|
+
color: white;
|
|
331
|
+
}
|
|
332
|
+
.Tag {
|
|
333
|
+
height: 40px;
|
|
334
|
+
flex-grow: 1;
|
|
335
|
+
display: flex;
|
|
336
|
+
flex-direction: row;
|
|
337
|
+
justify-content: center;
|
|
338
|
+
align-items: center;
|
|
339
|
+
gap: 6px;
|
|
340
|
+
padding: 0 24px;
|
|
341
|
+
border-radius: 16px;
|
|
342
|
+
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
|
|
343
|
+
background-image: linear-gradient(to top, rgba(255, 0, 0, 0), rgba(255,0,0,1));}
|
|
344
|
+
.TagW {
|
|
345
|
+
height: 40px;
|
|
346
|
+
flex-grow: 1;
|
|
347
|
+
display: flex;
|
|
348
|
+
flex-direction: row;
|
|
349
|
+
justify-content: center;
|
|
350
|
+
align-items: center;
|
|
351
|
+
gap: 6px;
|
|
352
|
+
padding: 0 24px;
|
|
353
|
+
border-radius: 16px;
|
|
354
|
+
border: solid 1px #000;
|
|
355
|
+
background-color: #fff;
|
|
356
|
+
color: #000;
|
|
357
|
+
|
|
358
|
+
}
|
|
359
|
+
/* */
|