Advertisement
marjwyatt

style sheet changes for @fontface

Mar 6th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.17 KB | None | 0 0
  1. /* Fontface Kits
  2. ------------------------------------------------------------ */
  3.  
  4. @font-face {  /* modified fontface webkit url to reflect location of font files on server */
  5.     font-family: 'JennaSueRegular';
  6.     src: url('http://localhost/guidedgifting/wp-content/fonts/JennaSue-webfont.eot');
  7.     src: url('http://localhost/guidedgifting/wp-content/fonts/JennaSue-webfont.eot?#iefix') format('embedded-opentype'),
  8.          url('http://localhost/guidedgifting/wp-content/fonts/JennaSue-webfont.woff') format('woff'),
  9.          url('http://localhost/guidedgifting/wp-content/fonts/JennaSue-webfont.ttf') format('truetype'),
  10.          url('http://localhost/guidedgifting/wp-content/fonts/JennaSue-webfont.svg#JennaSueRegular') format('svg');
  11.     font-weight: normal;
  12.     font-style: normal;
  13.  
  14. }
  15.  
  16. .fontface-jennasue { /* declare css class for use in on-page elements */
  17.         font-family: "JennaSueRegular";
  18.     }
  19. /* Header
  20. ------------------------------------------------------------ */
  21. #title { /* removed all references to font-family to use filter defined in functions.php */
  22.     margin:0 15px 0 0;
  23.     font-size: 4em;
  24.     float:left;
  25.     line-height:1;
  26.     color:#222222;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement