Difference between revisions of "SUNScholar/Theme/Fonts"

From Libopedia
Jump to navigation Jump to search
(Created page with "<center> '''Back to Theme''' </center> ===References=== *http://design.ubuntu.com/assets/ubuntu-font-family")
 
m
Line 3: Line 3:
 
</center>
 
</center>
  
 +
<pre>
 +
@font-face {
 +
    font-family: 'ubuntu-r';
 +
    src: url('../../fonts/ubuntu-r-webfont.eot');
 +
    src: url('../../fonts/ubuntu-r-webfont.eot?#iefix') format('embedded-opentype'),
 +
        url('../../fonts/ubuntu-r-webfont.woff') format('woff'),
 +
        url('../../fonts/ubuntu-r-webfont.ttf') format('truetype'),
 +
        url('../../fonts/ubuntu-r-webfont.svg#ubunturegular') format('svg');
 +
}
 +
 +
@font-face {
 +
    font-family: 'ubuntu-b';
 +
    src: url('../../fonts/ubuntu-b-webfont.eot');
 +
    src: url('../../fonts/ubuntu-b-webfont.eot?#iefix') format('embedded-opentype'),
 +
        url('../../fonts/ubuntu-b-webfont.woff') format('woff'),
 +
        url('../../fonts/ubuntu-b-webfont.ttf') format('truetype'),
 +
        url('../../fonts/ubuntu-b-webfont.svg#ubuntubold') format('svg');
 +
}
 +
</pre>
 
===References===
 
===References===
 
*http://design.ubuntu.com/assets/ubuntu-font-family
 
*http://design.ubuntu.com/assets/ubuntu-font-family

Revision as of 13:27, 19 August 2014

Back to Theme
@font-face {
    font-family: 'ubuntu-r';
    src: url('../../fonts/ubuntu-r-webfont.eot');
    src: url('../../fonts/ubuntu-r-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../fonts/ubuntu-r-webfont.woff') format('woff'),
         url('../../fonts/ubuntu-r-webfont.ttf') format('truetype'),
         url('../../fonts/ubuntu-r-webfont.svg#ubunturegular') format('svg');
}

@font-face {
    font-family: 'ubuntu-b';
    src: url('../../fonts/ubuntu-b-webfont.eot');
    src: url('../../fonts/ubuntu-b-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../fonts/ubuntu-b-webfont.woff') format('woff'),
         url('../../fonts/ubuntu-b-webfont.ttf') format('truetype'),
         url('../../fonts/ubuntu-b-webfont.svg#ubuntubold') format('svg');
}

References