mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-27 22:24:12 +01:00
56 lines
1.8 KiB
SCSS
56 lines
1.8 KiB
SCSS
/*!
|
|
* Copyright (C) 2013-2021 Combodo SARL
|
|
*
|
|
* This file is part of iTop.
|
|
*
|
|
* iTop is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* iTop is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
*/
|
|
|
|
/******************************************************************************************************************************/
|
|
/* NOTE: Those helpers allow to easily use an icon from libs. like FontAwesome or FontCombodo within a CSS rule (eg. ::after) */
|
|
/* To use it, simply "@extend %fa-regular-base" in a rule and put the desired icon "content: '\f054'" */
|
|
/******************************************************************************************************************************/
|
|
|
|
%fa-regular-base{
|
|
font-family: "Font Awesome 5 Free";
|
|
font-weight: 400;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
display: inline-block;
|
|
font-style: normal;
|
|
font-variant: normal;
|
|
text-rendering: auto;
|
|
line-height: 1;
|
|
}
|
|
%fa-solid-base{
|
|
font-family: "Font Awesome 5 Free";
|
|
font-weight: 900;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
display: inline-block;
|
|
font-style: normal;
|
|
font-variant: normal;
|
|
text-rendering: auto;
|
|
line-height: 1;
|
|
}
|
|
%fc-regular-base{
|
|
display: inline-block;
|
|
font-family: CombodoRegular;
|
|
font-style: normal;
|
|
font-variant: normal;
|
|
font-weight: normal;
|
|
text-rendering: auto;
|
|
line-height: 1;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
} |