| type="text/css" | type="text/css" | ||||
| href="https://fonts.googleapis.com/css?family=Mulish" | href="https://fonts.googleapis.com/css?family=Mulish" | ||||
| /> | /> | ||||
| <link | |||||
| rel="stylesheet" | |||||
| type="text/css" | |||||
| href="https://fonts.googleapis.com/css?family=DM+Sans" | |||||
| /> | |||||
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | <meta name="viewport" content="width=device-width, initial-scale=1" /> | ||||
| <meta name="theme-color" content="#000000" /> | <meta name="theme-color" content="#000000" /> | ||||
| <meta | <meta |
| * { | * { | ||||
| box-sizing: border-box; | box-sizing: border-box; | ||||
| font-family: "DM Sans"; | |||||
| } | } | ||||
| html { | html { |
| margin: 72px; | margin: 72px; | ||||
| `; | `; | ||||
| export const AboutHeaderTitle = styled(Typography)` | export const AboutHeaderTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| font-size: 72px; | font-size: 72px; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| `; | `; | ||||
| export const AboutHeaderParagraph = styled(Typography)` | export const AboutHeaderParagraph = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| font-size: 16px; | font-size: 16px; |
| margin-bottom: 72px; | margin-bottom: 72px; | ||||
| `; | `; | ||||
| export const AboutSectionTitle = styled(Typography)` | export const AboutSectionTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 24px; | font-size: 24px; | ||||
| margin-bottom: 18px; | margin-bottom: 18px; | ||||
| `; | `; | ||||
| export const AboutSectionText = styled(Typography)` | export const AboutSectionText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| font-size: 16px; | font-size: 16px; |
| height: 49px; | height: 49px; | ||||
| & button { | & button { | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 12px; | font-size: 12px; |
| }; | }; | ||||
| PrimaryButton.defaultProps = { | PrimaryButton.defaultProps = { | ||||
| font: "Open Sans", | |||||
| font: "DM Sans", | |||||
| }; | }; |
| `; | `; | ||||
| export const UserName = styled(Typography)` | export const UserName = styled(Typography)` | ||||
| margin-bottom: 12px; | margin-bottom: 12px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| font-size: 24px; | font-size: 24px; | ||||
| } | } | ||||
| `; | `; | ||||
| export const LastMessage = styled(Typography)` | export const LastMessage = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryDarkTextThird}; | color: ${selectedTheme.primaryDarkTextThird}; | ||||
| line-height: 22px; | line-height: 22px; | ||||
| font-size: 16px; | font-size: 16px; |
| `; | `; | ||||
| export const OfferText = styled(Box)` | export const OfferText = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: "12px"; | font-size: "12px"; | ||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| `; | `; | ||||
| export const OfferTitle = styled(Typography)` | export const OfferTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| flex: 1; | flex: 1; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-weight: 700; | font-weight: 700; |
| `; | `; | ||||
| export const OfferTitleMobile = styled(Typography)` | export const OfferTitleMobile = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| display: none; | display: none; | ||||
| flex: 1; | flex: 1; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| } | } | ||||
| `; | `; | ||||
| export const OfferTextMobile = styled(Box)` | export const OfferTextMobile = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 9px; | font-size: 9px; | ||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| `; | `; |
| `; | `; | ||||
| export const XSText = styled(Typography)` | export const XSText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 14px; | font-size: 14px; |
| } | } | ||||
| `; | `; | ||||
| export const CreateOfferTitle = styled(Typography)` | export const CreateOfferTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| /* width: 328px; | /* width: 328px; | ||||
| height: 33px; */ | height: 33px; */ | ||||
| text-align: center; | text-align: center; | ||||
| } | } | ||||
| `; | `; | ||||
| export const CreateOfferDescription = styled(Typography)` | export const CreateOfferDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-top: 9px; | margin-top: 9px; | ||||
| width: 221px; | width: 221px; | ||||
| font-style: normal; | font-style: normal; | ||||
| `; | `; | ||||
| export const SelectText = styled(Typography)` | export const SelectText = styled(Typography)` | ||||
| font-size: 16px; | font-size: 16px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-weight: 400; | font-weight: 400; | ||||
| `; | `; | ||||
| export const SelectField = styled(Select)` | export const SelectField = styled(Select)` | ||||
| `; | `; | ||||
| export const SelectAltText = styled(Typography)` | export const SelectAltText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: italic; | font-style: italic; | ||||
| white-space: pre; | white-space: pre; |
| import { TextField } from "../../../TextFields/TextField/TextField"; | import { TextField } from "../../../TextFields/TextField/TextField"; | ||||
| export const CreateOfferTitle = styled(Typography)` | export const CreateOfferTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| width: 328px; | width: 328px; | ||||
| height: 33px; | height: 33px; | ||||
| text-align: center; | text-align: center; | ||||
| position: relative; | position: relative; | ||||
| `; | `; | ||||
| export const CreateOfferDescription = styled(Typography)` | export const CreateOfferDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-top: 9px; | margin-top: 9px; | ||||
| width: 221px; | width: 221px; | ||||
| font-style: normal; | font-style: normal; |
| font-size: 13px; | font-size: 13px; | ||||
| width: 100%; | width: 100%; | ||||
| text-align: center; | text-align: center; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| /* margin-top: 0px; */ | /* margin-top: 0px; */ | ||||
| `; | `; |
| padding-right: 6px; | padding-right: 6px; | ||||
| line-height: 12px; | line-height: 12px; | ||||
| letter-spacing: 0.02em; | letter-spacing: 0.02em; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| cursor: pointer; | cursor: pointer; | ||||
| margin-right: 3px; | margin-right: 3px; |
| value={props.value} | value={props.value} | ||||
| onChange={props.onChange} | onChange={props.onChange} | ||||
| textsize={"12px"} | textsize={"12px"} | ||||
| font={"Open Sans"} | |||||
| font={"DM Sans"} | |||||
| fullWidth | fullWidth | ||||
| height={"40px"} | height={"40px"} | ||||
| containerStyle={{ marginTop: "6px" }} | containerStyle={{ marginTop: "6px" }} |
| value={toSearch} | value={toSearch} | ||||
| onChange={(event) => setToSearch(event.target.value)} | onChange={(event) => setToSearch(event.target.value)} | ||||
| textsize={"12px"} | textsize={"12px"} | ||||
| font={"Open Sans"} | |||||
| font={"DM Sans"} | |||||
| fullWidth | fullWidth | ||||
| height={"40px"} | height={"40px"} | ||||
| containerStyle={{ marginTop: "6px" }} | containerStyle={{ marginTop: "6px" }} |
| fullWidth | fullWidth | ||||
| onClick={props.toggleFilters} | onClick={props.toggleFilters} | ||||
| textcolor={selectedTheme.primaryPurple} | textcolor={selectedTheme.primaryPurple} | ||||
| font="Open Sans" | |||||
| font="DM Sans" | |||||
| style={{ | style={{ | ||||
| fontWeight: "600", | fontWeight: "600", | ||||
| fontSize: "12px", | fontSize: "12px", | ||||
| fullWidth | fullWidth | ||||
| onClick={handleFilters} | onClick={handleFilters} | ||||
| textcolor={selectedTheme.primaryPurple} | textcolor={selectedTheme.primaryPurple} | ||||
| font="Open Sans" | |||||
| font="DM Sans" | |||||
| style={{ | style={{ | ||||
| fontWeight: "600", | fontWeight: "600", | ||||
| fontSize: "12px", | fontSize: "12px", |
| return ( | return ( | ||||
| <FilterHeaderContainer> | <FilterHeaderContainer> | ||||
| <Title>{t("filters.title")}</Title> | <Title>{t("filters.title")}</Title> | ||||
| <Link to="#" textsize={"12px"} font={"Open Sans"} onClick={clearFilters}> | |||||
| <Link to="#" textsize={"12px"} font={"DM Sans"} onClick={clearFilters}> | |||||
| {t("filters.cancel")} | {t("filters.cancel")} | ||||
| </Link> | </Link> | ||||
| </FilterHeaderContainer> | </FilterHeaderContainer> |
| font-size: 24px; | font-size: 24px; | ||||
| line-height: 33px; | line-height: 33px; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| position: relative; | position: relative; | ||||
| `; | `; |
| align-items: center; | align-items: center; | ||||
| `; | `; | ||||
| export const InfoText = styled(Typography)` | export const InfoText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| text-transform: capitalize; | text-transform: capitalize; | ||||
| @media (max-width: 600px) { | @media (max-width: 600px) { | ||||
| font-size: 12px; | font-size: 12px; |
| `; | `; | ||||
| export const PostDate = styled(Typography)` | export const PostDate = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| &::before { | &::before { | ||||
| content: "Objavljeno: "; | content: "Objavljeno: "; | ||||
| @media (max-width: 600px) { | @media (max-width: 600px) { | ||||
| font-size: 9px; | font-size: 9px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| } | } | ||||
| } | } | ||||
| @media (max-width: 600px) { | @media (max-width: 600px) { | ||||
| flex-direction: column; | flex-direction: column; | ||||
| `; | `; | ||||
| export const OfferAuthorName = styled(Typography)` | export const OfferAuthorName = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| line-height: 22px; | line-height: 22px; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| `; | `; | ||||
| export const OfferLocation = styled(Typography)` | export const OfferLocation = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| `; | `; | ||||
| export const OfferCategory = styled(Box)` | export const OfferCategory = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| width: 33%; | width: 33%; | ||||
| `; | `; | ||||
| export const OfferPackage = styled(Box)` | export const OfferPackage = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| width: 34%; | width: 34%; | ||||
| `; | `; | ||||
| export const OfferViews = styled(Box)` | export const OfferViews = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| width: 34%; | width: 34%; | ||||
| `; | `; | ||||
| export const OfferDescriptionTitle = styled(Box)` | export const OfferDescriptionTitle = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| } | } | ||||
| `; | `; | ||||
| export const OfferDescriptionText = styled(Box)` | export const OfferDescriptionText = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| line-height: 22px; | line-height: 22px; | ||||
| } | } | ||||
| `; | `; | ||||
| export const DetailText = styled(Typography)` | export const DetailText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; |
| `; | `; | ||||
| export const OfferTitle = styled(Typography)` | export const OfferTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| flex: 1; | flex: 1; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| } | } | ||||
| `; | `; | ||||
| export const OfferDescriptionTitle = styled(Box)` | export const OfferDescriptionTitle = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| } | } | ||||
| `; | `; | ||||
| export const OfferDescriptionText = styled(Box)` | export const OfferDescriptionText = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| line-height: 22px; | line-height: 22px; | ||||
| `; | `; | ||||
| export const DesciprtionPostDate = styled(Typography)` | export const DesciprtionPostDate = styled(Typography)` | ||||
| display: none; | display: none; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| margin-top: 18px; | margin-top: 18px; | ||||
| content: "Objavljeno: "; | content: "Objavljeno: "; | ||||
| @media (max-width: 600px) { | @media (max-width: 600px) { | ||||
| font-size: 9px; | font-size: 9px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| } | } | ||||
| } | } | ||||
| @media screen and (min-width: 600px) and (max-width: 1200px) { | @media screen and (min-width: 600px) and (max-width: 1200px) { |
| export const OfferName = styled(Typography)` | export const OfferName = styled(Typography)` | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| ` | ` | ||||
| export const OfferCategory = styled(Typography)` | export const OfferCategory = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| ` | ` |
| } | } | ||||
| `; | `; | ||||
| export const MessageText = styled(Typography)` | export const MessageText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| line-height: 22px; | line-height: 22px; | ||||
| color: ${props => props.isMyMessage ? `white` : selectedTheme.messageText}; | color: ${props => props.isMyMessage ? `white` : selectedTheme.messageText}; |
| export const ProfileName = styled(Typography)` | export const ProfileName = styled(Typography)` | ||||
| font-size: 16px; | font-size: 16px; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${props => props.selected ? selectedTheme.primaryYellow : selectedTheme.primaryPurple}; | color: ${props => props.selected ? selectedTheme.primaryYellow : selectedTheme.primaryPurple}; | ||||
| `; | `; | ||||
| export const ProfileProduct = styled(Typography)` | export const ProfileProduct = styled(Typography)` | ||||
| margin-top: 9px; | margin-top: 9px; | ||||
| font-size: 9px; | font-size: 9px; | ||||
| color: ${props => props.selected ? "white" : selectedTheme.primaryDarkTextThird}; | color: ${props => props.selected ? "white" : selectedTheme.primaryDarkTextThird}; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| line-height: 10px; | line-height: 10px; | ||||
| margin-left: 1px; | margin-left: 1px; | ||||
| `; | `; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| font-weight: ${props => props.selected ? "400" : "600"}; | font-weight: ${props => props.selected ? "400" : "600"}; | ||||
| color: ${props => props.selected ? "white" : selectedTheme.primaryDarkTextThird}; | color: ${props => props.selected ? "white" : selectedTheme.primaryDarkTextThird}; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| line-height: 14px; | line-height: 14px; | ||||
| margin-left: 1px; | margin-left: 1px; | ||||
| `; | `; |
| `; | `; | ||||
| export const DeleteQuestion = styled(Typography)` | export const DeleteQuestion = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| text-align: center; | text-align: center; |
| `} | `} | ||||
| `; | `; | ||||
| export const OfferTitle = styled(Typography)` | export const OfferTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| flex: 1; | flex: 1; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| flex-direction: column; | flex-direction: column; | ||||
| `; | `; | ||||
| export const OfferAuthorName = styled(Typography)` | export const OfferAuthorName = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| line-height: 22px; | line-height: 22px; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| } | } | ||||
| `; | `; | ||||
| export const OfferLocation = styled(Typography)` | export const OfferLocation = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| } | } | ||||
| `; | `; | ||||
| export const OfferCategory = styled(Box)` | export const OfferCategory = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| `} | `} | ||||
| `; | `; | ||||
| export const OfferPackage = styled(Box)` | export const OfferPackage = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| `; | `; | ||||
| export const OfferViews = styled(Box)` | export const OfferViews = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| `} | `} | ||||
| `; | `; | ||||
| export const OfferDescriptionTitle = styled(Box)` | export const OfferDescriptionTitle = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| `; | `; | ||||
| export const OfferDescriptionText = styled(Box)` | export const OfferDescriptionText = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| line-height: 22px; | line-height: 22px; | ||||
| } | } | ||||
| `; | `; | ||||
| export const DetailText = styled(Typography)` | export const DetailText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; |
| ` | ` | ||||
| export const ReviewsTitle = styled(Typography)` | export const ReviewsTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| @media (max-width: 800px) { | @media (max-width: 800px) { | ||||
| display: none; | display: none; | ||||
| export const NoReviewsText = styled(Typography)` | export const NoReviewsText = styled(Typography)` | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-size: 24px; | font-size: 24px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| text-align: center; | text-align: center; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| width: 100%; | width: 100%; | ||||
| export const NoReviewsAltText = styled(Typography)` | export const NoReviewsAltText = styled(Typography)` | ||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| text-align: center; | text-align: center; | ||||
| width: 100%; | width: 100%; | ||||
| margin-bottom: 36px; | margin-bottom: 36px; | ||||
| export const ReviewQuoteBox = styled(Grid)` | export const ReviewQuoteBox = styled(Grid)` | ||||
| ` | ` | ||||
| export const ReviewQuoteText = styled(Typography)` | export const ReviewQuoteText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| ` | ` | ||||
| export const ReviewDetails = styled(Grid)` | export const ReviewDetails = styled(Grid)` | ||||
| ` | ` | ||||
| export const ReviewDetailsText = styled(Typography)` | export const ReviewDetailsText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| font-style: italic; | font-style: italic; | ||||
| export const ProfileName = styled(Typography)` | export const ProfileName = styled(Typography)` | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| ` | ` | ||||
| export const ReviewContainer = styled(Box)` | export const ReviewContainer = styled(Box)` | ||||
| ` | ` |
| export const HeaderSelect = styled(Select)` | export const HeaderSelect = styled(Select)` | ||||
| width: 210px; | width: 210px; | ||||
| height: 35px; | height: 35px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-top: 3px; | margin-top: 3px; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| position: relative; | position: relative; |
| `} | `} | ||||
| margin-right: 0; | margin-right: 0; | ||||
| & label { | & label { | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| } | } | ||||
| & span:nth-child(1) svg { | & span:nth-child(1) svg { |
| ` | ` | ||||
| export const LeftLabel = styled(FormLabel)` | export const LeftLabel = styled(FormLabel)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| overflow: hidden; | overflow: hidden; | ||||
| text-overflow: ellipsis; | text-overflow: ellipsis; | ||||
| white-space: nowrap; | white-space: nowrap; | ||||
| max-width: 100px; | max-width: 100px; | ||||
| cursor: pointer; | cursor: pointer; | ||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| ` | ` |
| width: 100%; | width: 100%; | ||||
| text-align: center; | text-align: center; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 24px; | font-size: 24px; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| padding-bottom: 36px; | padding-bottom: 36px; |
| width: 100%; | width: 100%; | ||||
| text-align: center; | text-align: center; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 24px; | font-size: 24px; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| padding-bottom: 36px; | padding-bottom: 36px; | ||||
| } | } | ||||
| `; | `; | ||||
| export const SelectOption = styled(Option)` | export const SelectOption = styled(Option)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| text-align: left; | text-align: left; | ||||
| @media (max-width: 600px) { | @media (max-width: 600px) { | ||||
| `; | `; | ||||
| export const CommentField = styled(TextField)` | export const CommentField = styled(TextField)` | ||||
| & * { | & * { | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| &::-webkit-scrollbar { | &::-webkit-scrollbar { | ||||
| width: 5px; | width: 5px; |
| export const MainTitle = styled(Typography)` | export const MainTitle = styled(Typography)` | ||||
| font-weight: 700; | font-weight: 700; | ||||
| font-size: 24px; | font-size: 24px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| text-align: center; | text-align: center; | ||||
| width: 100%; | width: 100%; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| export const AltTitle = styled(Typography)` | export const AltTitle = styled(Typography)` | ||||
| width: 100%; | width: 100%; | ||||
| text-align: center; | text-align: center; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-weight: 400; | font-weight: 400; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; |
| ` | ` | ||||
| export const ProfileName = styled(Box)` | export const ProfileName = styled(Box)` | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| ` | ` | ||||
| export const ProfileLocationText = styled(Box)` | export const ProfileLocationText = styled(Box)` | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-left: 5.5px; | margin-left: 5.5px; | ||||
| ` | ` |
| ` | ` | ||||
| export const HeaderTitleContent = styled(Typography)` | export const HeaderTitleContent = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| position: relative; | position: relative; | ||||
| left: 9px; | left: 9px; |
| } | } | ||||
| ` | ` | ||||
| export const HeaderTitleContent = styled(Typography)` | export const HeaderTitleContent = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| position: relative; | position: relative; | ||||
| left: 9px; | left: 9px; |
| ` | ` | ||||
| export const DropdownItemStyled = styled(Box)` | export const DropdownItemStyled = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| ` | ` |
| padding-bottom: 10px; | padding-bottom: 10px; | ||||
| padding-top: 5px; | padding-top: 5px; | ||||
| padding-right: 0.9rem; | padding-right: 0.9rem; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${(props) => | color: ${(props) => | ||||
| props.disabled | props.disabled | ||||
| ? selectedTheme.iconStrokeDisabledColor | ? selectedTheme.iconStrokeDisabledColor |
| padding: 0 72px; | padding: 0 72px; | ||||
| `; | `; | ||||
| export const AboutFooterText = styled(Typography)` | export const AboutFooterText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-weight: 400; | font-weight: 400; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| line-height: 22px; | line-height: 22px; | ||||
| top: 29px; | top: 29px; | ||||
| `; | `; | ||||
| export const LinkText = styled(Typography)` | export const LinkText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| line-height: 22px; | line-height: 22px; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryGrayText}; | color: ${selectedTheme.primaryGrayText}; |
| `; | `; | ||||
| export const LinkRoute = styled(Link)` | export const LinkRoute = styled(Link)` | ||||
| text-decoration: none; | text-decoration: none; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-weight: ${props => props.selected ? "600" : "400"}; | font-weight: ${props => props.selected ? "600" : "400"}; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| line-height: 22px; | line-height: 22px; |
| ` | ` | ||||
| export const DrawerOption = styled(Typography)` | export const DrawerOption = styled(Typography)` | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-size: 18px; | font-size: 18px; | ||||
| position: relative; | position: relative; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 14px; | font-size: 14px; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| position: relative; | position: relative; | ||||
| left: -14px; | left: -14px; | ||||
| top: -3px; | top: -3px; | ||||
| ` | ` | ||||
| export const HeaderTitle = styled(Typography)` | export const HeaderTitle = styled(Typography)` | ||||
| font-weight: 700; | font-weight: 700; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 18px; | font-size: 18px; | ||||
| color: ${selectedTheme.primaryDarkTextThird}; | color: ${selectedTheme.primaryDarkTextThird}; | ||||
| position: absolute; | position: absolute; | ||||
| ` | ` | ||||
| export const MyUsername = styled(Typography)` | export const MyUsername = styled(Typography)` | ||||
| font-size: 12px; | font-size: 12px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| position: relative; | position: relative; | ||||
| top: 12px; | top: 12px; |
| flex: 3; | flex: 3; | ||||
| max-width: 520px; | max-width: 520px; | ||||
| margin-right: 30px; | margin-right: 30px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| @media (max-width: 1700px) { | @media (max-width: 1700px) { | ||||
| margin-left: 15%; | margin-left: 15%; | ||||
| } | } | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| padding-top: 5px; | padding-top: 5px; | ||||
| padding-right: 10px; | padding-right: 10px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-weight: 600; | font-weight: 600; | ||||
| white-space: nowrap; | white-space: nowrap; | ||||
| `; | `; | ||||
| top: 70px; | top: 70px; | ||||
| height: 46px; | height: 46px; | ||||
| left: -5px; | left: -5px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| ${props => !props.shouldShow && `display: none;`} | ${props => !props.shouldShow && `display: none;`} | ||||
| & div { | & div { | ||||
| background-color: white; | background-color: white; |
| font-size: 10px; | font-size: 10px; | ||||
| bottom: 0; | bottom: 0; | ||||
| right: -5px; | right: -5px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| ` | ` |
| gap: 12px; | gap: 12px; | ||||
| `; | `; | ||||
| export const HeaderText = styled(Typography)` | export const HeaderText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| line-height: 22px; | line-height: 22px; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; |
| `; | `; | ||||
| export const OfferIconText = styled(Typography)` | export const OfferIconText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| margin-left: 7.2px; | margin-left: 7.2px; | ||||
| `; | `; | ||||
| export const OfferTitle = styled(Typography)` | export const OfferTitle = styled(Typography)` | ||||
| margin-bottom: 12px; | margin-bottom: 12px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${(props) => | color: ${(props) => | ||||
| props.isMyProfile | props.isMyProfile | ||||
| ? selectedTheme.primaryYellow | ? selectedTheme.primaryYellow | ||||
| flex-direction: column; | flex-direction: column; | ||||
| `; | `; | ||||
| export const OfferAuthorName = styled(Typography)` | export const OfferAuthorName = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| line-height: 22px; | line-height: 22px; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| `; | `; | ||||
| export const OfferLocation = styled(Box)` | export const OfferLocation = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| `; | `; | ||||
| export const OfferPIB = styled(Box)` | export const OfferPIB = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${(props) => | color: ${(props) => | ||||
| props.isMyProfile | props.isMyProfile | ||||
| ? selectedTheme.primaryDarkTextThird | ? selectedTheme.primaryDarkTextThird | ||||
| `; | `; | ||||
| export const OfferCategory = styled(Box)` | export const OfferCategory = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| width: 33%; | width: 33%; | ||||
| `; | `; | ||||
| export const OfferPackage = styled(Box)` | export const OfferPackage = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| width: 34%; | width: 34%; | ||||
| `; | `; | ||||
| export const OfferViews = styled(Box)` | export const OfferViews = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| width: 34%; | width: 34%; | ||||
| `; | `; | ||||
| export const OfferDescriptionTitle = styled(Box)` | export const OfferDescriptionTitle = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| `; | `; | ||||
| export const OfferDescriptionText = styled(Box)` | export const OfferDescriptionText = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| line-height: 22px; | line-height: 22px; |
| flex-direction: row; | flex-direction: row; | ||||
| align-items: center; | align-items: center; | ||||
| gap: 7px; | gap: 7px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| margin-bottom: 7px; | margin-bottom: 7px; | ||||
| } | } | ||||
| `; | `; | ||||
| export const DetailText = styled(Typography)` | export const DetailText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${props => props.isMyProfile ? "white" : selectedTheme.primaryText}; | color: ${props => props.isMyProfile ? "white" : selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 16px; | font-size: 16px; |
| flex-direction: row; | flex-direction: row; | ||||
| align-items: center; | align-items: center; | ||||
| gap: 7px; | gap: 7px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| margin-bottom: 7px; | margin-bottom: 7px; | ||||
| } | } | ||||
| `; | `; | ||||
| export const DetailText = styled(Typography)` | export const DetailText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${props => props.isMyProfile ? "white" : selectedTheme.primaryText}; | color: ${props => props.isMyProfile ? "white" : selectedTheme.primaryText}; | ||||
| line-height: 16px; | line-height: 16px; | ||||
| font-size: 16px; | font-size: 16px; |
| } | } | ||||
| `; | `; | ||||
| export const StatusText = styled(Grid)` | export const StatusText = styled(Grid)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| @media (max-width: 600px) { | @media (max-width: 600px) { | ||||
| font-size: 12px; | font-size: 12px; |
| import selectedTheme from "../../../themes"; | import selectedTheme from "../../../themes"; | ||||
| export const LoginDescription = styled(Typography)` | export const LoginDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-top: 9px; | margin-top: 9px; | ||||
| width: 221px; | width: 221px; | ||||
| font-style: normal; | font-style: normal; |
| export const ErrorText = styled(Typography)` | export const ErrorText = styled(Typography)` | ||||
| color: red; | color: red; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| position: relative; | position: relative; | ||||
| top: -12px; | top: -12px; | ||||
| height: 20px; | height: 20px; |
| import selectedTheme from "../../../themes"; | import selectedTheme from "../../../themes"; | ||||
| export const LoginTitle = styled(Typography)` | export const LoginTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| width: 328px; | width: 328px; | ||||
| height: 33px; | height: 33px; | ||||
| text-align: center; | text-align: center; |
| align-items: center; | align-items: center; | ||||
| `; | `; | ||||
| export const HeaderLocation = styled(Box)` | export const HeaderLocation = styled(Box)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| line-height: 22px; | line-height: 22px; | ||||
| export const HeaderSelect = styled(Select)` | export const HeaderSelect = styled(Select)` | ||||
| width: 210px; | width: 210px; | ||||
| height: 35px; | height: 35px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-top: 3px; | margin-top: 3px; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| position: relative; | position: relative; | ||||
| } | } | ||||
| `; | `; | ||||
| export const SelectItem = styled(MenuItem)` | export const SelectItem = styled(MenuItem)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| `; | `; | ||||
| export const SelectOption = styled(Option)` | export const SelectOption = styled(Option)` | ||||
| @media (max-width: 600px) { | @media (max-width: 600px) { | ||||
| margin-right: 40px; | margin-right: 40px; | ||||
| `; | `; | ||||
| export const HeaderAltLocation = styled(Typography)` | export const HeaderAltLocation = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| margin-left: 5px; | margin-left: 5px; | ||||
| } | } | ||||
| `; | `; | ||||
| export const MySwapsTitle = styled(Typography)` | export const MySwapsTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryDarkTextThird}; | color: ${selectedTheme.primaryDarkTextThird}; | ||||
| position: relative; | position: relative; |
| `; | `; | ||||
| export const OffersNotFoundHeading = styled(Typography)` | export const OffersNotFoundHeading = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 72px; | font-size: 72px; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| `; | `; | ||||
| export const OffersNotFoundDescription = styled(Typography)` | export const OffersNotFoundDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| color: #818181; | color: #818181; | ||||
| margin: 9px 0 46px 0; | margin: 9px 0 46px 0; |
| export const PagingContainer = styled(Box)` | export const PagingContainer = styled(Box)` | ||||
| width: calc(100% / 12 * 8.5); | width: calc(100% / 12 * 8.5); | ||||
| text-align: center; | text-align: center; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| display: flex; | display: flex; | ||||
| flex: 1; | flex: 1; | ||||
| justify-content: center; | justify-content: center; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| line-height: 18px; | line-height: 18px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| height: 40px; | height: 40px; | ||||
| min-width: 40px; | min-width: 40px; | ||||
| max-width: 40px; | max-width: 40px; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| line-height: 18px; | line-height: 18px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| height: 40px; | height: 40px; | ||||
| min-width: 40px; | min-width: 40px; | ||||
| max-width: 40px; | max-width: 40px; |
| color: white; | color: white; | ||||
| width: 100%; | width: 100%; | ||||
| min-width: 270px; | min-width: 270px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| `; | `; | ||||
| export const PopoverList = styled(List)` | export const PopoverList = styled(List)` | ||||
| width: 100%; | width: 100%; | ||||
| export const PopoverListItemAvatarContainer = styled(ListItemAvatar)``; | export const PopoverListItemAvatarContainer = styled(ListItemAvatar)``; | ||||
| export const PopoverButton = styled(Button)` | export const PopoverButton = styled(Button)` | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 12px; | font-size: 12px; | ||||
| text-align: right; | text-align: right; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| padding-top: 5px; | padding-top: 5px; | ||||
| font-size: 13px; | font-size: 13px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| `; | `; |
| text-align: center; | text-align: center; | ||||
| align-items: center; | align-items: center; | ||||
| display: flex; | display: flex; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| position: relative; | position: relative; | ||||
| left: 18px; | left: 18px; | ||||
| top: 5px; | top: 5px; | ||||
| position: relative; | position: relative; | ||||
| left: 18px; | left: 18px; | ||||
| top: 5px; | top: 5px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| line-height: 22px; | line-height: 22px; |
| props.highlighted && `box-shadow: 4px 4px 9px rgba(0, 0, 0, 0.12);`} | props.highlighted && `box-shadow: 4px 4px 9px rgba(0, 0, 0, 0.12);`} | ||||
| `; | `; | ||||
| export const PlanTitle = styled(Typography)` | export const PlanTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 24px; | font-size: 24px; | ||||
| line-height: 33px; | line-height: 33px; | ||||
| : selectedTheme.primaryPurple}; | : selectedTheme.primaryPurple}; | ||||
| `; | `; | ||||
| export const PlanTitleDescription = styled(Typography)` | export const PlanTitleDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| gap: 9px; | gap: 9px; | ||||
| `; | `; | ||||
| export const PlanPrice = styled(Typography)` | export const PlanPrice = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 24px; | font-size: 24px; | ||||
| props.highlighted ? "white" : selectedTheme.primaryPurple}; | props.highlighted ? "white" : selectedTheme.primaryPurple}; | ||||
| `; | `; | ||||
| export const PlanPriceMonthly = styled(Typography)` | export const PlanPriceMonthly = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 24px; | font-size: 24px; | ||||
| gap: 6px; | gap: 6px; | ||||
| `; | `; | ||||
| export const PlanDetailTitle = styled(Typography)` | export const PlanDetailTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| : selectedTheme.primaryPurple}; | : selectedTheme.primaryPurple}; | ||||
| `; | `; | ||||
| export const PlanDetailDescription = styled(Typography)` | export const PlanDetailDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 100; | font-weight: 100; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| export const BuyButton = styled(PrimaryButton)` | export const BuyButton = styled(PrimaryButton)` | ||||
| text-align: center; | text-align: center; | ||||
| margin-top: 18px; | margin-top: 18px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 12px; | font-size: 12px; |
| export const CartIcon = styled(Cart)``; | export const CartIcon = styled(Cart)``; | ||||
| export const SendIcon = styled(Send)``; | export const SendIcon = styled(Send)``; | ||||
| export const PricesAltText = styled(Typography)` | export const PricesAltText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| font-size: 16px; | font-size: 16px; |
| import { ArrowButton } from "../../Buttons/ArrowButton/ArrowButton"; | import { ArrowButton } from "../../Buttons/ArrowButton/ArrowButton"; | ||||
| export const PricesHeaderTitle = styled(Typography)` | export const PricesHeaderTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| font-size: 72px; | font-size: 72px; | ||||
| `; | `; | ||||
| export const LinkText = styled(Typography)` | export const LinkText = styled(Typography)` | ||||
| border-bottom: 1px dotted ${selectedTheme.primaryPurple}; | border-bottom: 1px dotted ${selectedTheme.primaryPurple}; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| line-height: 22px; | line-height: 22px; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; |
| margin: 72px; | margin: 72px; | ||||
| `; | `; | ||||
| export const PrivacyPolicyHeaderTitle = styled(Typography)` | export const PrivacyPolicyHeaderTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| font-size: 72px; | font-size: 72px; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| `; | `; | ||||
| export const PrivacyPolicyHeaderParagraph = styled(Typography)` | export const PrivacyPolicyHeaderParagraph = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| font-size: 16px; | font-size: 16px; |
| margin-top: 25px; | margin-top: 25px; | ||||
| `; | `; | ||||
| export const PrivacyPolicySectionTitle = styled(Typography)` | export const PrivacyPolicySectionTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 24px; | font-size: 24px; | ||||
| margin-bottom: 18px; | margin-bottom: 18px; | ||||
| `; | `; | ||||
| export const PrivacyPolicySectionText = styled(Typography)` | export const PrivacyPolicySectionText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| font-size: 16px; | font-size: 16px; |
| gap: 12px; | gap: 12px; | ||||
| `; | `; | ||||
| export const HeaderText = styled(Typography)` | export const HeaderText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| line-height: 22px; | line-height: 22px; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; |
| width: 100%; | width: 100%; | ||||
| ` | ` | ||||
| export const NoProfileOffersMainText = styled(Typography)` | export const NoProfileOffersMainText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-weight: 700; | font-weight: 700; | ||||
| font-size: 24px; | font-size: 24px; | ||||
| text-align: center; | text-align: center; | ||||
| line-height: 33px; | line-height: 33px; | ||||
| ` | ` | ||||
| export const NoProfileOffersAltText = styled(Typography)` | export const NoProfileOffersAltText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| color: ${selectedTheme.primaryGrayText}; | color: ${selectedTheme.primaryGrayText}; | ||||
| text-align: center; | text-align: center; |
| `; | `; | ||||
| export const HeaderTitle = styled(Typography)` | export const HeaderTitle = styled(Typography)` | ||||
| font-size: 16px; | font-size: 16px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryDarkTextThird}; | color: ${selectedTheme.primaryDarkTextThird}; | ||||
| position: relative; | position: relative; | ||||
| margin-left: 10px; | margin-left: 10px; | ||||
| export const HeaderSelect = styled(Select)` | export const HeaderSelect = styled(Select)` | ||||
| width: 210px; | width: 210px; | ||||
| height: 35px; | height: 35px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-top: 3px; | margin-top: 3px; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| position: absolute; | position: absolute; |
| `; | `; | ||||
| export const ProfileHeader = styled(Typography)` | export const ProfileHeader = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 24px; | font-size: 24px; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| margin-top: 9px; | margin-top: 9px; | ||||
| export const ErrorMessage = styled(Typography)` | export const ErrorMessage = styled(Typography)` | ||||
| color: red; | color: red; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| position: relative; | position: relative; | ||||
| top: 20px; | top: 20px; | ||||
| font-size: 14px; | font-size: 14px; |
| // : selectedTheme.primaryPurple}; | // : selectedTheme.primaryPurple}; | ||||
| // font-weight: 700; | // font-weight: 700; | ||||
| // font-size: 24px; | // font-size: 24px; | ||||
| // font-family: "Open Sans"; | |||||
| // font-family: "DM Sans"; | |||||
| // margin-bottom: 5px; | // margin-bottom: 5px; | ||||
| // @media (max-width: 600px) { | // @media (max-width: 600px) { | ||||
| // font-size: 18px; | // font-size: 18px; | ||||
| // color: ${(props) => | // color: ${(props) => | ||||
| // props.isMyProfile ? "white" : selectedTheme.primaryDarkText}; | // props.isMyProfile ? "white" : selectedTheme.primaryDarkText}; | ||||
| // margin-top: 0.18rem; | // margin-top: 0.18rem; | ||||
| // font-family: "Open Sans"; | |||||
| // font-family: "DM Sans"; | |||||
| // font-size: 16px; | // font-size: 16px; | ||||
| // padding-top: 1px; | // padding-top: 1px; | ||||
| // @media (max-width: 600px) { | // @media (max-width: 600px) { | ||||
| // color: ${(props) => | // color: ${(props) => | ||||
| // props.isMyProfile ? "white" : selectedTheme.primaryDarkText}; | // props.isMyProfile ? "white" : selectedTheme.primaryDarkText}; | ||||
| // display: unset; | // display: unset; | ||||
| // font-family: "Open Sans"; | |||||
| // font-family: "DM Sans"; | |||||
| // letter-spacing: 0.02em; | // letter-spacing: 0.02em; | ||||
| // font-size: 16px; | // font-size: 16px; | ||||
| // position: relative; | // position: relative; | ||||
| // margin-right: 2rem; | // margin-right: 2rem; | ||||
| // display: unset; | // display: unset; | ||||
| // margin-left: 1rem; | // margin-left: 1rem; | ||||
| // font-family: "Open Sans"; | |||||
| // font-family: "DM Sans"; | |||||
| // font-size: 16px; | // font-size: 16px; | ||||
| // margin-bottom: 2px; | // margin-bottom: 2px; | ||||
| // @media (max-width: 600px) { | // @media (max-width: 600px) { | ||||
| export const HeaderTitle = styled(Typography)` | export const HeaderTitle = styled(Typography)` | ||||
| font-size: 16px; | font-size: 16px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryDarkTextThird}; | color: ${selectedTheme.primaryDarkTextThird}; | ||||
| position: relative; | position: relative; | ||||
| @media (max-width: 600px) { | @media (max-width: 600px) { |
| color: ${(props) => | color: ${(props) => | ||||
| props.isMyProfile ? "white" : selectedTheme.primaryDarkText}; | props.isMyProfile ? "white" : selectedTheme.primaryDarkText}; | ||||
| display: unset; | display: unset; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| letter-spacing: 0.02em; | letter-spacing: 0.02em; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| position: relative; | position: relative; |
| : selectedTheme.primaryPurple}; | : selectedTheme.primaryPurple}; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| font-size: 24px; | font-size: 24px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-bottom: 5px; | margin-bottom: 5px; | ||||
| @media (max-width: 600px) { | @media (max-width: 600px) { | ||||
| font-size: 18px; | font-size: 18px; | ||||
| color: ${(props) => | color: ${(props) => | ||||
| props.isMyProfile ? "white" : selectedTheme.primaryDarkText}; | props.isMyProfile ? "white" : selectedTheme.primaryDarkText}; | ||||
| margin-top: 0.18rem; | margin-top: 0.18rem; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| padding-top: 1px; | padding-top: 1px; | ||||
| @media (max-width: 600px) { | @media (max-width: 600px) { |
| margin-right: 2rem; | margin-right: 2rem; | ||||
| display: unset; | display: unset; | ||||
| margin-left: 1rem; | margin-left: 1rem; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| margin-bottom: 2px; | margin-bottom: 2px; | ||||
| @media (max-width: 600px) { | @media (max-width: 600px) { |
| } | } | ||||
| `; | `; | ||||
| export const ProfileHeaderText = styled(Typography)` | export const ProfileHeaderText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| margin-left: 7.2px; | margin-left: 7.2px; | ||||
| `} | `} | ||||
| margin-right: 0; | margin-right: 0; | ||||
| & label { | & label { | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| } | } | ||||
| & span:nth-child(1) svg { | & span:nth-child(1) svg { |
| padding: 2px; | padding: 2px; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| cursor: pointer; | cursor: pointer; | ||||
| & fieldset { | & fieldset { | ||||
| border-color: ${props => props.borderColor ? props.borderColor : selectedTheme.primaryPurple} !important; | border-color: ${props => props.borderColor ? props.borderColor : selectedTheme.primaryPurple} !important; |
| ? selectedTheme.primaryPurple | ? selectedTheme.primaryPurple | ||||
| : selectedTheme.primaryDarkGrayText}; | : selectedTheme.primaryDarkGrayText}; | ||||
| border-radius: 100%; | border-radius: 100%; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| text-align: center; | text-align: center; | ||||
| border: 5px solid | border: 5px solid | ||||
| ${(props) => | ${(props) => |
| // import Mulish from "./fonts/Mulish-Regular.ttf" | // import Mulish from "./fonts/Mulish-Regular.ttf" | ||||
| const GlobalStyle = createGlobalStyle` | const GlobalStyle = createGlobalStyle` | ||||
| ${'' /* @font-face { | ${'' /* @font-face { | ||||
| font-family: 'Open Sans'; | |||||
| font-family: 'DM Sans'; | |||||
| src: url(${OpenSans}) format('truetype'); | src: url(${OpenSans}) format('truetype'); | ||||
| font-weight: 400; | font-weight: 400; | ||||
| font-style: normal; | font-style: normal; |
| italicPlaceholder: false, | italicPlaceholder: false, | ||||
| showAnimation: false, | showAnimation: false, | ||||
| height: "48px", | height: "48px", | ||||
| // font: "Open Sans" | |||||
| // font: "DM Sans" | |||||
| }; | }; |
| export const NoReviewsText = styled(Typography)` | export const NoReviewsText = styled(Typography)` | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-size: 24px; | font-size: 24px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| text-align: center; | text-align: center; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| width: 100%; | width: 100%; | ||||
| export const NoReviewsAltText = styled(Typography)` | export const NoReviewsAltText = styled(Typography)` | ||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| text-align: center; | text-align: center; | ||||
| width: 100%; | width: 100%; | ||||
| margin-bottom: 36px; | margin-bottom: 36px; |
| `; | `; | ||||
| export const ReviewsTitle = styled(Typography)` | export const ReviewsTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| @media (max-width: 600px) { | @media (max-width: 600px) { | ||||
| font-size: 12px; | font-size: 12px; | ||||
| export const NoReviewsText = styled(Typography)` | export const NoReviewsText = styled(Typography)` | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| font-size: 24px; | font-size: 24px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| text-align: center; | text-align: center; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| width: 100%; | width: 100%; | ||||
| export const NoReviewsAltText = styled(Typography)` | export const NoReviewsAltText = styled(Typography)` | ||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| text-align: center; | text-align: center; | ||||
| width: 100%; | width: 100%; | ||||
| margin-bottom: 36px; | margin-bottom: 36px; | ||||
| export const ThumbBox = styled(Grid)``; | export const ThumbBox = styled(Grid)``; | ||||
| export const ReviewQuoteBox = styled(Grid)``; | export const ReviewQuoteBox = styled(Grid)``; | ||||
| export const ReviewQuoteText = styled(Typography)` | export const ReviewQuoteText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| `; | `; | ||||
| export const ReviewDetails = styled(Grid)``; | export const ReviewDetails = styled(Grid)``; | ||||
| export const ReviewDetailsText = styled(Typography)` | export const ReviewDetailsText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| color: ${selectedTheme.primaryDarkText}; | color: ${selectedTheme.primaryDarkText}; | ||||
| font-style: italic; | font-style: italic; | ||||
| export const ProfileName = styled(Typography)` | export const ProfileName = styled(Typography)` | ||||
| font-weight: 600; | font-weight: 600; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| `; | `; | ||||
| export const ReviewContainer = styled(Box)``; | export const ReviewContainer = styled(Box)``; |
| align-items: center; | align-items: center; | ||||
| `; | `; | ||||
| export const CreateOfferTitle = styled(Typography)` | export const CreateOfferTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| width: 328px; | width: 328px; | ||||
| height: 33px; | height: 33px; | ||||
| text-align: center; | text-align: center; | ||||
| margin-bottom: 40px; | margin-bottom: 40px; | ||||
| `; | `; | ||||
| export const CreateOfferDescription = styled(Typography)` | export const CreateOfferDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-top: 9px; | margin-top: 9px; | ||||
| width: 221px; | width: 221px; | ||||
| font-style: normal; | font-style: normal; |
| `; | `; | ||||
| export const ErrorHeading = styled(Typography)` | export const ErrorHeading = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 72px; | font-size: 72px; | ||||
| font-weight: 700; | font-weight: 700; | ||||
| color: ${selectedTheme.primaryPurple}; | color: ${selectedTheme.primaryPurple}; | ||||
| `; | `; | ||||
| export const ErrorMessage = styled(Typography)` | export const ErrorMessage = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-size: 16px; | font-size: 16px; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| color: #818181; | color: #818181; |
| } | } | ||||
| `; | `; | ||||
| export const ForgotPasswordTitle = styled(Typography)` | export const ForgotPasswordTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| width: 328px; | width: 328px; | ||||
| height: 33px; | height: 33px; | ||||
| text-align: center; | text-align: center; | ||||
| margin-top: 36px; | margin-top: 36px; | ||||
| `; | `; | ||||
| export const ForgotPasswordDescription = styled(Typography)` | export const ForgotPasswordDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-top: 9px; | margin-top: 9px; | ||||
| width: 221px; | width: 221px; | ||||
| font-style: normal; | font-style: normal; | ||||
| `; | `; | ||||
| export const ErrorMessage = styled(Typography)` | export const ErrorMessage = styled(Typography)` | ||||
| color: red; | color: red; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| position: relative; | position: relative; | ||||
| top: -7px; | top: -7px; | ||||
| font-size: 14px; | font-size: 14px; |
| } | } | ||||
| `; | `; | ||||
| export const Title = styled(Typography)` | export const Title = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| width: 328px; | width: 328px; | ||||
| height: 33px; | height: 33px; | ||||
| margin-top: 6px; | margin-top: 6px; | ||||
| `; | `; | ||||
| export const Description = styled(Typography)` | export const Description = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-top: 9px; | margin-top: 9px; | ||||
| width: 279px; | width: 279px; | ||||
| font-style: normal; | font-style: normal; | ||||
| height: 216px; | height: 216px; | ||||
| `; | `; | ||||
| export const StandardText = styled(Typography)` | export const StandardText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| padding-right: 6px; | padding-right: 6px; |
| width: 335px; | width: 335px; | ||||
| `; | `; | ||||
| export const RegisterDescription = styled(Typography)` | export const RegisterDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| display: flex; | display: flex; | ||||
| `; | `; | ||||
| export const ErrorMessage = styled(Typography)` | export const ErrorMessage = styled(Typography)` | ||||
| color: red; | color: red; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| position: relative; | position: relative; | ||||
| top: -7px; | top: -7px; | ||||
| font-size: 14px; | font-size: 14px; |
| } | } | ||||
| `; | `; | ||||
| export const RegisterTitle = styled(Typography)` | export const RegisterTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| width: 328px; | width: 328px; | ||||
| height: 33px; | height: 33px; | ||||
| text-align: center; | text-align: center; | ||||
| } | } | ||||
| `; | `; | ||||
| export const RegisterDescription = styled(Typography)` | export const RegisterDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-top: 9px; | margin-top: 9px; | ||||
| width: 221px; | width: 221px; | ||||
| font-style: normal; | font-style: normal; | ||||
| justify-content: center; | justify-content: center; | ||||
| `; | `; | ||||
| export const FooterText = styled(Typography)` | export const FooterText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: #505050; | color: #505050; | ||||
| text-align: center; | text-align: center; | ||||
| width: 330px; | width: 330px; | ||||
| `; | `; | ||||
| export const ErrorMessage = styled(Box)` | export const ErrorMessage = styled(Box)` | ||||
| color: red; | color: red; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| position: relative; | position: relative; | ||||
| top: 5px; | top: 5px; | ||||
| text-align: left; | text-align: left; |
| width: 335px; | width: 335px; | ||||
| `; | `; | ||||
| export const RegisterDescription = styled(Typography)` | export const RegisterDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| display: flex; | display: flex; | ||||
| `; | `; | ||||
| export const ErrorMessage = styled(Typography)` | export const ErrorMessage = styled(Typography)` | ||||
| color: red; | color: red; | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| position: relative; | position: relative; | ||||
| top: -7px; | top: -7px; | ||||
| font-size: 14px; | font-size: 14px; |
| width: 335px; | width: 335px; | ||||
| `; | `; | ||||
| export const RegisterDescription = styled(Typography)` | export const RegisterDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| font-style: normal; | font-style: normal; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| display: flex; | display: flex; |
| margin-top: 32px; | margin-top: 32px; | ||||
| `; | `; | ||||
| export const RegisterDescription = styled(Typography)` | export const RegisterDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-top: 36px; | margin-top: 36px; | ||||
| width: 430px; | width: 430px; | ||||
| font-style: normal; | font-style: normal; |
| } | } | ||||
| `; | `; | ||||
| export const ResetPasswordTitle = styled(Typography)` | export const ResetPasswordTitle = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| width: 328px; | width: 328px; | ||||
| height: 33px; | height: 33px; | ||||
| text-align: center; | text-align: center; | ||||
| margin-top: 36px; | margin-top: 36px; | ||||
| `; | `; | ||||
| export const ResetPasswordDescription = styled(Typography)` | export const ResetPasswordDescription = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| margin-top: 9px; | margin-top: 9px; | ||||
| width: 270px; | width: 270px; | ||||
| font-style: normal; | font-style: normal; | ||||
| justify-content: center; | justify-content: center; | ||||
| `; | `; | ||||
| export const FooterText = styled(Typography)` | export const FooterText = styled(Typography)` | ||||
| font-family: "Open Sans"; | |||||
| font-family: "DM Sans"; | |||||
| color: ${selectedTheme.primaryText}; | color: ${selectedTheme.primaryText}; | ||||
| padding-right: 6px; | padding-right: 6px; | ||||
| text-align: center; | text-align: center; |