Advertisement
LumChron

IM FELL English CSS Wilderlande

Sep 24th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. @import url(/light.css);
  2.  
  3. /* Using the Fell Types from from http://iginomarini.com/fell/the-revival-fonts/ */
  4.  
  5. /* English Italic */
  6. @font-face {
  7. font-family: 'IM FELL English PRO';
  8. font-style: italic;
  9. font-weight: 400;
  10. src: local('IM FELL English PRO Italic'), url(https://campaignwiki.org/fonts/IMFeENit29C.otf) format('opentype');
  11. }
  12. /* English Roman */
  13. @font-face {
  14. font-family: 'IM FELL English PRO';
  15. font-style: normal;
  16. font-weight: 400;
  17. src: local('IM FELL English PRO Roman'), url(https://campaignwiki.org/fonts/IMFeENrm29C.otf) format('opentype');
  18. }
  19.  
  20. /* use it */
  21. body {
  22. font-family: "IM FELL English PRO";
  23. font-size: 16pt;
  24. }
  25.  
  26. /* use small caps instead of bold */
  27. h1, h2, h3, h4, b, strong, th {
  28. font-variant: small-caps;
  29. font-weight: normal !important;
  30. }
  31.  
  32. /* no use of bold in _this_ */
  33. em.underline {
  34. font-weight: normal !important;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement