mirror of
https://github.com/kadisonm/obsidian-homework-plugin.git
synced 2026-07-22 08:40:33 +00:00
50 lines
No EOL
902 B
CSS
50 lines
No EOL
902 B
CSS
.task_checkbox {
|
|
white-space: nowrap;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.task_name {
|
|
display:inline-block;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.subject_name {
|
|
font-size: large;
|
|
font-weight: bold;
|
|
margin-right: 15px;
|
|
line-height: 3;
|
|
display: inline-block;
|
|
}
|
|
|
|
.subject_add {
|
|
font-size: medium;
|
|
width: 30px;
|
|
height: 30px;
|
|
|
|
background-color: var(--interactive-accent)!important;
|
|
|
|
color: var(--text-normal);
|
|
font-weight: bolder;
|
|
text-align: center;
|
|
|
|
padding: 0;
|
|
box-shadow: none;
|
|
margin: none;
|
|
|
|
border-width: 0px;
|
|
border-color: var(--text-normal)!important;
|
|
border-radius: 25%;
|
|
}
|
|
|
|
.subject_add:hover {
|
|
box-shadow: none;
|
|
background-color: var(--interactive-accent-hover)!important;
|
|
}
|
|
|
|
.task_checkbox {
|
|
border-radius: 50%;
|
|
vertical-align: middle;
|
|
border: 1px var(--text-normal);
|
|
cursor: pointer;
|
|
padding: 0%;
|
|
} |