Fix generation of endopint URLs
[cascardo/ipsilon.git] / less / font.less
1 //
2 // Font face definitions are different than original RCUE ones.
3 // Here we supply only ttf variants. Additionally local variant can be
4 // used so it can save some load time in some browsers.
5 //
6 // This approach has a disadvantage:
7 // - fonts do not work in IE8 and below
8 //
9 // Advantage is that it nicely fits into Fedora packaging guidelines
10 //
11
12
13 @font-face {
14   font-family: 'Open Sans';
15   font-style: normal;
16   font-weight: normal;
17   src: local('Open Sans'),
18        url('../fonts/open-sans/OpenSans-Regular.ttf') format('truetype');
19 }
20
21 @font-face {
22   font-family: 'Open Sans';
23   font-style: italic;
24   font-weight: normal;
25   src: local('Open Sans Italic'),
26        url('../fonts/open-sans/OpenSans-Italic.ttf') format('truetype');
27 }
28
29 @font-face {
30   font-family: 'Open Sans';
31   font-style: normal;
32   font-weight: 300;
33   src:  local('Open Sans Light'),
34         url('../fonts/open-sans/OpenSans-Light.ttf') format('truetype');
35 }
36
37 @font-face {
38   font-family: 'Open Sans';
39   font-style: italic;
40   font-weight: 300;
41   src: local('Open Sans Light Italic'),
42        url('../fonts/open-sans/OpenSans-LightItalic.ttf') format('truetype');
43 }
44
45 @font-face {
46   font-family: 'Open Sans';
47   font-style: normal;
48   font-weight: 600;
49   src: local('Open Sans Semibold'),
50        url('../fonts/open-sans/OpenSans-Semibold.ttf') format('truetype');
51 }
52
53 @font-face {
54   font-family: 'Open Sans';
55   font-style: italic;
56   font-weight: 600;
57   src: local('Open Sans Semibold Italic'),
58        url('../fonts/open-sans/OpenSans-SemiboldItalic.ttf') format('truetype');
59 }
60
61 @font-face {
62   font-family: 'Open Sans';
63   font-style: normal;
64   font-weight: 700;
65   src: local('Open Sans Bold'),
66        url('../fonts/open-sans/OpenSans-Bold.ttf') format('truetype');
67 }
68
69 @font-face {
70   font-family: 'Open Sans';
71   font-style: italic;
72   font-weight: 700;
73   src: local('Open Sans Bold Italic'),
74        url('../fonts/open-sans/OpenSans-BoldItalic.ttf') format('truetype');
75 }
76
77 @font-face {
78   font-family: 'Open Sans';
79   font-style: normal;
80   font-weight: 900;
81   src: local('Open Sans Extrabold'),
82        url('../fonts/open-sans/OpenSans-ExtraBold.ttf') format('truetype');
83 }
84
85 @font-face {
86   font-family: 'Open Sans';
87   font-style: italic;
88   font-weight: 900;
89   src: local('Open Sans Extrabold Italic'),
90        url('../fonts/open-sans/OpenSans-ExtraBoldItalic.ttf') format('truetype');
91 }