org-theme/scss/partials/_org.scss

61 lines
1002 B
SCSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// TODO Keywords (all not-done stats)
.todo{
background-color: $red;
padding: 0px 4px;
color: $white;
&.WAIT {
background-color: $orange;
}
}
// DONE Keywords (all status that counts as done)
.done{
background-color: $green;
padding: 0px 4px;
color: $white;
}
// Priority
.priority {
color: $vivid-orange;
font-family: $mono;
}
// tag in a headline
.tag span {
background-color: $pale-grey;
border: 1px solid $grey;
color: #939393;
cursor: pointer;
display: block;
float: right;
font-size: 0.7rem;
font-weight: $normal;
margin: 0 3px;
padding: 5px;
border-radius: 3px;
}
// span around keyword plus timestamp
.timestamp-wrapper {
font-size: 0.8rem;
margin-left: 2em;
// Timestamp date
.timestamp {
color: $dark-blue;
font-family: $mono;
}
// keyword associated with a timestamp, like SCHEDULED
.timestamp-kwd {
}
}
// Inline Task
.inlinetask {
}