Skip to content

Instantly share code, notes, and snippets.

@derekcavaliero
Last active November 20, 2024 18:47
Show Gist options
  • Select an option

  • Save derekcavaliero/732e897d919f790f202bfe0fb5e76919 to your computer and use it in GitHub Desktop.

Select an option

Save derekcavaliero/732e897d919f790f202bfe0fb5e76919 to your computer and use it in GitHub Desktop.
:root {
--font-import-uri: 'https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap';
--font-family: 'Schibsted Grotesk', sans-serif;
--lvl-pacing-green: #d9ead3;
--lvl-pacing-purple: #d9d2e9;
--lvl-pacing-yellow: #fff2cc;
}
@import url(var(--font-import-uri));
/**
* Generic Text Overrides
*/
body {
font-family: var(--font-family) !important;
}
.header-title,
.header-title a:hover,
.header-title a:focus{
font-weight: 700 !important;
}
/**
* Logo Sizing
*/
.header-with-actions{
background-size: auto 70% !important;
background-position: 1rem center !important;
}
/**
* Force KPI Grid Rows to be centered on x-axis
*/
.grid-row{
justify-content: center !important;
}
/**
* TABLE OVERRIDES
*/
.pvtTable th{
font-weight: 700 !important;
}
/**
* Custom Pacing Sheet Color Overrides
* NOTE - these classes will vary report-by-report, you will need to use inspect element to find them and swap them out below.
*/
.css-1f4686j{
background-color: var(--lvl-pacing-green) !important;
}
.css-qdjn5s{
background-color: var(--lvl-pacing-purple) !important;
}
.css-unsg34{
background-color: var(--lvl-pacing-yellow) !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment