blade1989 / NewOS

Seeking for a new os? you've come to the right place!
http://blade1989.github.io/NewOS/
0 stars 0 forks source link

fonts seem chopped in Windows. #30

Closed blade1989 closed 9 years ago

blade1989 commented 9 years ago

Definitely visible in the footer tag, when using the <small> tag.

font-seem-chopped

slightly fixed with:

 footer small {
      font-size: xx-small;
      letter-spacing: 1px;
     text-shadow: none;
 }

font-seems-fixed

But not completely smooth.

System

Ubuntu 14.04 does not seem to have this problem!

blade1989 commented 9 years ago

Possible fix:

--- code ---

 footer small {
      font-family: helvetica;
      font-size: x-small;
 }

Rendered in Firefox 35.0.1(Windows 7) footer-fix

Definitely looks better!