Last active
September 11, 2023 20:16
-
-
Save dgrebb/fa0735e85c834ce610f32fce12930de9 to your computer and use it in GitHub Desktop.
Tabliss GitHub Calendar / Weather Customization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .GitHub { | |
| width: 100%; | |
| display: flex; | |
| justify-content: center; | |
| margin-bottom: -69px; | |
| } | |
| .sr-only { | |
| display: none; | |
| } | |
| td:first-child { | |
| display: none; | |
| } | |
| div.js-calendar-graph div:last-child { | |
| display: none; | |
| } | |
| table.ContributionCalendar-grid thead { | |
| display: none; | |
| } | |
| td.ContributionCalendar-day { | |
| border-radius: 3px; | |
| } | |
| td.ContributionCalendar-day[data-level='0'] { | |
| background-color: var(--color-calendar-graph-day-bg); | |
| } | |
| td.ContributionCalendar-day[data-level='1'] { | |
| background-color: var(--color-calendar-graph-day-L1-bg); | |
| } | |
| td.ContributionCalendar-day[data-level='2'] { | |
| background-color: var(--color-calendar-graph-day-L2-bg); | |
| } | |
| td.ContributionCalendar-day[data-level='3'] { | |
| background-color: var(--color-calendar-graph-day-L3-bg); | |
| } | |
| td.ContributionCalendar-day[data-level='4'] { | |
| background-color: var(--color-calendar-graph-day-L4-bg); | |
| } | |
| .Weather .details { | |
| display: flex; | |
| justify-content: center; | |
| } | |
| .Weather .details dl { | |
| padding: 0.5rem; | |
| } | |
| .credit .photo > * { | |
| display: none; | |
| } | |
| .credit .photo { | |
| font-size: 0; | |
| color: transparent; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment