mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2024-12-03 08:45:34 +02:00
22 lines
353 B
CSS
22 lines
353 B
CSS
/* Sets all the text color to red! */
|
|
/* body {
|
|
color: red;
|
|
} */
|
|
|
|
.added {
|
|
color:black;
|
|
background-color: white;
|
|
}
|
|
.normal {
|
|
color:lightgray;
|
|
}
|
|
.deleted {
|
|
color:white;
|
|
background-color: black;
|
|
/* text-decoration: line-through; */
|
|
}
|
|
.op-scrollable{
|
|
overflow-y:scroll;
|
|
/* min-height: 280px; */
|
|
max-height: 280px;
|
|
} |