Проблема с толщиной шрифта в Safari, текст слишком полужирный

Когда я применяю стиль font-weight: bold , шрифт в Safari выглядит слишком жирным по сравнению с другими браузерами. Я пробовал ниже css, как предлагалось на каком-то сайте, но он все тот же.

text-shadow: #000000 0 0 0px;

Скриншоты отрисовки текста:

Chrome
enter image description here

Safari
enter image description here

Вот мое объявление css:

p {

margin: 8px 5px 0 15px; 
color:#D8D2CE; 
font-size:11pt;  
letter-spacing:-1px; 
font-weight: bold;  
font-family: LektonRegular;  
}

@font-face {
font-family: 'LektonRegular';
src: url('myfonts/lekton-regular-webfont.eot');
src: url('myfonts/lekton-regular-webfont.eot?#iefix') format('embedded-opentype'),
     url('myfonts/lekton-regular-webfont.woff') format('woff'),
     url(myfonts/lekton-regular-webfont.ttf)  format('truetype'),
     url('myfonts/lekton-regular-webfont.svg#LektonRegular') format('svg');
font-weight: normal;
font-style: normal;

}

Как это можно исправить?

18
задан Kunj 24 July 2018 в 15:03
поделиться