|
|
|
@ -1,11 +1,24 @@ |
|
|
|
import styled from 'styled-components/macro' |
|
|
|
import styled from 'styled-components/macro' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { devices } from 'config/devices' |
|
|
|
|
|
|
|
|
|
|
|
import { ProfileTypes } from 'config' |
|
|
|
import { ProfileTypes } from 'config' |
|
|
|
|
|
|
|
|
|
|
|
export const Wrapper = styled.div` |
|
|
|
export const Wrapper = styled.div` |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
margin-left: 70px; |
|
|
|
margin-left: 70px; |
|
|
|
margin-bottom: 50px; |
|
|
|
margin-bottom: 50px; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media ${devices.laptop} { |
|
|
|
|
|
|
|
margin-top: 30px; |
|
|
|
|
|
|
|
margin-left: 23px; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media ${devices.laptop} { |
|
|
|
|
|
|
|
margin-top: 14px; |
|
|
|
|
|
|
|
margin-left: 20px; |
|
|
|
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
|
|
|
} |
|
|
|
` |
|
|
|
` |
|
|
|
|
|
|
|
|
|
|
|
export const Name = styled.h1` |
|
|
|
export const Name = styled.h1` |
|
|
|
@ -15,6 +28,11 @@ export const Name = styled.h1` |
|
|
|
font-weight: bold; |
|
|
|
font-weight: bold; |
|
|
|
letter-spacing: 0.02em; |
|
|
|
letter-spacing: 0.02em; |
|
|
|
color: #fff; |
|
|
|
color: #fff; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media ${devices.tablet} { |
|
|
|
|
|
|
|
font-size: 22px; |
|
|
|
|
|
|
|
line-height: 21px; |
|
|
|
|
|
|
|
} |
|
|
|
` |
|
|
|
` |
|
|
|
|
|
|
|
|
|
|
|
export const Logo = styled.img<{ profileType: number }>` |
|
|
|
export const Logo = styled.img<{ profileType: number }>` |
|
|
|
@ -58,6 +76,14 @@ export const AddToFavButton = styled.button` |
|
|
|
width: 18px; |
|
|
|
width: 18px; |
|
|
|
height: 18px; |
|
|
|
height: 18px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media ${devices.tablet} { |
|
|
|
|
|
|
|
line-height: 13px; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
svg { |
|
|
|
|
|
|
|
display: none; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
` |
|
|
|
` |
|
|
|
|
|
|
|
|
|
|
|
export const InFavorites = styled(AddToFavButton)` |
|
|
|
export const InFavorites = styled(AddToFavButton)` |
|
|
|
@ -70,6 +96,15 @@ export const InfoItems = styled.div` |
|
|
|
margin-left: 20px; |
|
|
|
margin-left: 20px; |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
align-items: center; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media ${devices.laptop} { |
|
|
|
|
|
|
|
flex-direction: column; |
|
|
|
|
|
|
|
align-items: flex-start; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media ${devices.tablet} { |
|
|
|
|
|
|
|
margin-left: 10px; |
|
|
|
|
|
|
|
} |
|
|
|
` |
|
|
|
` |
|
|
|
|
|
|
|
|
|
|
|
export const InfoItem = styled.div` |
|
|
|
export const InfoItem = styled.div` |
|
|
|
@ -77,4 +112,10 @@ export const InfoItem = styled.div` |
|
|
|
font-size: 16px; |
|
|
|
font-size: 16px; |
|
|
|
letter-spacing: 0.02em; |
|
|
|
letter-spacing: 0.02em; |
|
|
|
color: rgba(255, 255, 255, 0.5); |
|
|
|
color: rgba(255, 255, 255, 0.5); |
|
|
|
|
|
|
|
margin-right: 5px; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media ${devices.tablet} { |
|
|
|
|
|
|
|
font-size: 11px; |
|
|
|
|
|
|
|
line-height: 10px; |
|
|
|
|
|
|
|
} |
|
|
|
` |
|
|
|
` |
|
|
|
|