/** * Gremmler - CSS Styling * * Set global styling definitions * * @category   content * @package    Gremmler * @author     Christian Brinkert <christian.brinkert@sector27.de> * @copyright  2023 sector27 GmbH * @version    1.0.0 */body{    padding:0;    margin:0;    background-color: #fff;}*{    padding:0; margin:0;}i.fa{    font-family: FontAwesome, fantasy;}img{    border-width:0;}a{    text-decoration:none;}.clearFix{ clear:both; float:none; }/* Scrollbars */html, body{    scrollbar-base-color: rgb(255,255,255);    scrollbar-3dlight-color: rgb(255,255,255);    scrollbar-arrow-color: rgb(255,255,255);    scrollbar-darkshadow-color: rgb(255,255,255);    scrollbar-highlight-color: rgb(255,255,255);    scrollbar-shadow-color: rgb(255,255,255);    scrollbar-track-color: rgb(255,255,255);    scrollbar-face-color: rgb(162,162,162);    background-color: #fff;}textarea, div{    scrollbar-base-color: rgb(255,255,255);    scrollbar-3dlight-color: rgb(255,255,255);    scrollbar-arrow-color: rgb(255,255,255);    scrollbar-darkshadow-color: rgb(255,255,255);    scrollbar-highlight-color: rgb(255,255,255);    scrollbar-shadow-color: rgb(255,255,255);    scrollbar-track-color: rgb(255,255,255);    scrollbar-face-color: rgb(162,162,162);}/* to all scrollbars */::-webkit-scrollbar {    width: 12px;}::-webkit-scrollbar-track {    background-color: rgb(255,255,255);}::-webkit-scrollbar-thumb {    background-color: rgb(162,162,162);}/* END of scrollbars *//* SELECTION TEXT */::-moz-selection{    background: rgb(0,150,170);    color:#fff;}::selection {    background: rgb(0,150,170);    color:#fff;}