67 lines
1.8 KiB
CSS
67 lines
1.8 KiB
CSS
/* 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 */
|
|
}
|
|
|
|
/* Recolor headline, remove bold style, add more letter-spacing */
|
|
h1 {
|
|
color: #ff4500;
|
|
font-weight: 400;
|
|
letter-spacing: 0.025em;
|
|
}
|
|
|
|
/* Remove bold style, add more letter-spacing */
|
|
.footer section small b {
|
|
font-weight: normal; /* or font-weight: 400; */
|
|
letter-spacing: 0.025em;
|
|
}
|
|
|
|
/* Add more letter-spacing */
|
|
.footer section small i {
|
|
letter-spacing: 0.025em;
|
|
}
|
|
|
|
/* Remove bold style, add more letter-spacing */
|
|
.footer section small span {
|
|
font-weight: normal !important; /* or font-weight: 400; */
|
|
letter-spacing: 0.025em;
|
|
}
|
|
|
|
/* Remove bold style, add more letter-spacing */
|
|
.address-row span {
|
|
font-weight: normal !important; /* or font-weight: 400; */
|
|
letter-spacing: 0.025em;
|
|
}
|
|
|
|
/* 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: 2rem;
|
|
height: 2rem;
|
|
border-radius: 8rem;
|
|
background-color: #ff8c00;
|
|
} |