font fixes

This commit is contained in:
kurpfish
2021-08-13 15:18:18 +03:00
parent fd8558ec02
commit a168d71497
16 changed files with 41 additions and 9 deletions
@@ -155,7 +155,9 @@
border: none; border: none;
color: #ffffff; color: #ffffff;
font-family: 'Muller'; font-family: 'Muller';
font-weight: 500;
font-size: 2.2em; font-size: 2.2em;
font-weight: bold;
letter-spacing: normal; letter-spacing: normal;
line-height: 71.88px; line-height: 71.88px;
text-align: center; text-align: center;
@@ -182,7 +184,8 @@
background-color: #ffffff; background-color: #ffffff;
border: 2px solid #6aaf5c; border: 2px solid #6aaf5c;
font-family: 'Muller'; font-family: 'Muller';
font-size: 1.8em; font-size: 2em;
font-weight: 300;
letter-spacing: normal; letter-spacing: normal;
line-height: 71.88px; line-height: 71.88px;
text-align: center; text-align: center;
@@ -155,6 +155,7 @@
border: none; border: none;
color: #ffffff; color: #ffffff;
font-family: 'Muller'; font-family: 'Muller';
font-weight: bold;
font-size: 2.2em; font-size: 2.2em;
letter-spacing: normal; letter-spacing: normal;
line-height: 71.88px; line-height: 71.88px;
@@ -179,7 +180,8 @@
background-color: #ffffff; background-color: #ffffff;
border: 2px solid #6aaf5c; border: 2px solid #6aaf5c;
font-family: 'Muller'; font-family: 'Muller';
font-size: 1.8em; font-size: 2em;
font-weight: 300;
letter-spacing: normal; letter-spacing: normal;
line-height: 71.88px; line-height: 71.88px;
text-align: center; text-align: center;
+2 -2
View File
@@ -31,7 +31,7 @@ const Description = ({ onLoadMore }) => {
</div> </div>
<div className="col-12 col-xl-6"> <div className="col-12 col-xl-6">
<h3 className={style.description__title}> <h3 className={style.description__title}>
{el.specification} {SKILLS[el.position_id]}, {LEVELS[el.level]} <Link to={`/candidate/${el.id}`}>{el.specification} {SKILLS[el.position_id]}, {LEVELS[el.level]} </Link>
</h3> </h3>
{el.vc_text_short ? ( {el.vc_text_short ? (
@@ -88,7 +88,7 @@ const Description = ({ onLoadMore }) => {
</div> </div>
<div className="col-12 col-xl-6"> <div className="col-12 col-xl-6">
<h3 className={style.description__title}> <h3 className={style.description__title}>
{el.specification} {SKILLS[el.position_id]}, {LEVELS[el.level]} <Link to={`/candidate/${el.id}`}> {el.specification} {SKILLS[el.position_id]}, {LEVELS[el.level]} </Link>
</h3> </h3>
{el.vc_text_short ? ( {el.vc_text_short ? (
@@ -53,7 +53,7 @@
margin-bottom: 10px; margin-bottom: 10px;
} }
.description__title { .description__title a {
color: #333; color: #333;
} }
@@ -115,6 +115,7 @@
border: none; border: none;
color: #ffffff; color: #ffffff;
font-family: 'Muller'; font-family: 'Muller';
font-weight: bold;
font-size: 1.6em; font-size: 1.6em;
line-height: normal; line-height: normal;
letter-spacing: 0.8px; letter-spacing: 0.8px;
@@ -21,7 +21,7 @@ const handlePositionClick = ({dispatch, positionId, isSelected}) => {
}; };
const OutstaffingBlock = ({ dataTags = [], selected, img, header, positionId, isSelected, onSelect }) => { const OutstaffingBlock = ({ dataTags = [], selected, img, header, positionId, isSelected, onSelect }) => {
console.log('p', positionId)
const dispatch = useDispatch(); const dispatch = useDispatch();
const itemsArr = useSelector(selectItems); const itemsArr = useSelector(selectItems);
@@ -71,6 +71,10 @@
color: gray !important; color: gray !important;
} }
.search__submit {
font-weight: bold;
}
.search__submit:hover .loader path { .search__submit:hover .loader path {
fill: #6aaf5c; fill: #6aaf5c;
} }
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+25 -3
View File
@@ -318,9 +318,31 @@
@font-face { @font-face {
font-family: 'Muller'; font-family: 'Muller';
src: url('muller_extrabold_demo.woff2') format('woff2'), url('muller_extrabold_demo.woff') format('woff'), src: local('Muller Bold'), local('Muller-Bold'),
url('muller_extrabold_demo.ttf') format('truetype'); url('MullerBold.woff2') format('woff2'),
font-weight: bold; url('MullerBold.woff') format('woff'),
url('MullerBold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: local('Muller Regular'), local('Muller-Regular'),
url('MullerRegular.woff2') format('woff2'),
url('MullerRegular.woff') format('woff'),
url('MullerRegular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: local('Muller Light'), local('Muller-Light'),
url('MullerLight.woff2') format('woff2'),
url('MullerLight.woff') format('woff'),
url('MullerLight.ttf') format('truetype');
font-weight: 300;
font-style: normal; font-style: normal;
} }