32 lines
1.1 KiB
Text
Executable file
32 lines
1.1 KiB
Text
Executable file
/**
|
|
* This file provides styles for web fonts and icon fonts
|
|
*
|
|
* @author Jana Deutschlaender <deutschlaender@cosmocode.de>
|
|
*/
|
|
|
|
/* web font */
|
|
.setLocalFontFace('roboto',300,'Roboto Light','Roboto-Light','roboto-light'); /* roboto light */
|
|
.setLocalFontFace('roboto',400,'Roboto','Roboto-Regular','roboto-regular'); /* roboto regular */
|
|
.setLocalFontFace('roboto',500,'Roboto Medium','Roboto-Medium','roboto-medium'); /* roboto medium */
|
|
.setLocalFontFace('roboto',700,'Roboto Bold','Roboto-Bold','roboto-bold'); /* roboto bold */
|
|
|
|
.setLocalFontFace('roboto',400,'Roboto Condensed','RobotoCondensed-Regular','roboto-condensed'); /* roboto condensed */
|
|
.setLocalFontFace('roboto',700,'Roboto Condensed Bold','RobotoCondensed-Bold','roboto-boldcondensed'); /* roboto condensed */
|
|
|
|
/* icon font */
|
|
.setIconFontFace('fontello','fontello');
|
|
|
|
.icon, [class^="icon-"], [class*=" icon-"],
|
|
.profile,
|
|
.log-in,
|
|
.log-out{
|
|
.fontello();
|
|
}
|
|
|
|
/* custom icon font */
|
|
@import (less) "../fonts/icons/fontello-codes.css";
|
|
|
|
.profile{
|
|
.icon-user;
|
|
}
|
|
|