Last active
March 9, 2021 04:25
-
-
Save shripadk/cf91da2a4f0b6ead85d35b291f4a76e2 to your computer and use it in GitHub Desktop.
Obsidian Cybertron Theme Overrides
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
/** | |
* 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