Skip to content

Instantly share code, notes, and snippets.

@shripadk
Last active March 9, 2021 04:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shripadk/cf91da2a4f0b6ead85d35b291f4a76e2 to your computer and use it in GitHub Desktop.
Save shripadk/cf91da2a4f0b6ead85d35b291f4a76e2 to your computer and use it in GitHub Desktop.
Obsidian Cybertron Theme Overrides
/**
* Checkbox modifications:
* -----------------------
* Have added !important only because I am overriding Cybertron.
* You can remove it if you are directly modifying .task-list-item-checkbox.
*/
.markdown-preview-view .task-list-item-checkbox {
top: 2.6px !important;
left: -6.6px !important;
border: 2px solid #fcf601;
box-shadow: unset;
}
.markdown-preview-view .task-list-item-checkbox:checked::before {
left: 0px;
top: -0.1px;
font-size: 0.8em;
}
/**
* Hashtag modifications:
* ----------------------
*/
.tag {
color: #ffffff !important;
background-color: var(--text-accent);
border: none;
font-size: 11px;
padding: 1px 8px;
text-align: center;
text-decoration: none;
margin: 0px 0px;
cursor: pointer;
border-radius: 14px;
display: inline;
vertical-align: middle;
}
.tag:hover {
color: #ffffff !important;
background-color: var(--text-accent-hover);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment