org-theme/scss/partials/_org.scss

61 lines
1002 B
SCSS
Raw Normal View History

2020-11-26 19:55:02 +01:00
// 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;
2020-11-27 15:16:19 +01:00
font-family: $mono;
2020-11-26 19:55:02 +01:00
}
// tag in a headline
.tag span {
background-color: $pale-grey;
border: 1px solid $grey;
color: #939393;
cursor: pointer;
display: block;
float: right;
2020-12-13 22:48:06 +01:00
font-size: 0.7rem;
2020-11-27 15:16:19 +01:00
font-weight: $normal;
2020-11-26 19:55:02 +01:00
margin: 0 3px;
padding: 5px;
border-radius: 3px;
}
// span around keyword plus timestamp
.timestamp-wrapper {
2020-12-13 22:48:06 +01:00
font-size: 0.8rem;
2020-11-26 19:55:02 +01:00
margin-left: 2em;
// Timestamp date
.timestamp {
color: $dark-blue;
2020-11-27 15:16:19 +01:00
font-family: $mono;
2020-11-26 19:55:02 +01:00
}
// keyword associated with a timestamp, like SCHEDULED
.timestamp-kwd {
}
}
// Inline Task
.inlinetask {
}