/* Change global color variables https://usebilly.app/en/support/custom-css */ /* Change global color variables */ :root { /* --primary: #121212; /* default text */ /*--primary-dark: blue; /* address, date, no. */ /*--primary-light: orange; /* second alternating row */ /*--primary-extralight: green; /* first alternating row */ --accent: #FF4500; /* total header */ --accent-dark: #121212; /* total value */ --accent-light: #FFC999; /* total background value */ --accent-extralight: #FFE7CC; /* total background header */ } /* Change font, recolor headline, remove bold style, add more letter-spacing */ h1 { font-family: "Perfectly Nineties"; font-size: 2.5rem; color: #ff4500; font-weight: 400; letter-spacing: 0.025em; } /* Change font */ .footer section small i { font-family: "MD UI"; } .footer section small { width: 12rem; } /* Remove bold style */ .address-row span, .footer section small span, .footer section small b { font-weight: normal !important; /* or font-weight: 400; */ } /* Disable circled numbers, activate square punctuation and legible forms for MD UI */ .address, .info-table td, .main-table td, .total-table td { font-feature-settings: "ss01" 1, "ss02" 1, "ss03" 0, "ss04" 0; } /* Disable circled numbers for MD IO */ .info-table th, .main-table th, .total-table th { font-feature-settings: "ss01" 1, "ss02" 0, "ss03" 0, "ss04" 0; } /* Change table header to primary color */ .info-table tr:last-of-type th, .total-table tr:last-of-type th { color: #121212; } /* Change look of folding-marks */ .folding-mark { width: 0.5rem; height: 0.5rem; border-radius: 2rem; background-color: #ff8c00; }