Warning, /webapps/ocs-webserver/library/lessphp/tests/inputs/font_family.less is written in an unsupported language. File is not indexed.

0001 
0002 @font-directory: 'fonts/';
0003 @some-family: Gentium;
0004 
0005 @font-face: maroon; // won't collide with @font-face { } 
0006 
0007 @font-face {
0008         font-family: Graublau Sans Web;
0009         src: url(@{font-directory}GraublauWeb.otf) format("opentype");
0010 }
0011 
0012 @font-face {
0013   font-family: @some-family;
0014   src: url('@{font-directory}Gentium.ttf');
0015 }
0016  
0017 @font-face {
0018   font-family: @some-family;
0019   src: url("@{font-directory}GentiumItalic.ttf");
0020   font-style: italic;
0021 }
0022 
0023 h2 { 
0024         font-family: @some-family;
0025         crazy: @font-face;
0026 }
0027 
0028