Optimize text rendering for legibility
This commit is contained in:
parent
7a5a90de82
commit
a907addbe2
|
@ -18,6 +18,11 @@ body {
|
|||
color: $text-color;
|
||||
background-color: $background-color;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-webkit-font-feature-settings: "kern" 1;
|
||||
-moz-font-feature-settings: "kern" 1;
|
||||
-o-font-feature-settings: "kern" 1;
|
||||
font-feature-settings: "kern" 1;
|
||||
font-kerning: normal;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -13,6 +13,11 @@ body {
|
|||
border-top: 5px solid #fc0;
|
||||
@include box-shadow(inset 0 3px 30px rgba(0,0,0,.3));
|
||||
text-shadow: 0 1px 3px rgba(0,0,0,.5);
|
||||
-webkit-font-feature-settings: "kern" 1;
|
||||
-moz-font-feature-settings: "kern" 1;
|
||||
-o-font-feature-settings: "kern" 1;
|
||||
font-feature-settings: "kern" 1;
|
||||
font-kerning: normal;
|
||||
}
|
||||
|
||||
.clear {
|
||||
|
|
Loading…
Reference in New Issue