61 lines
1.2 KiB
SCSS
61 lines
1.2 KiB
SCSS
// 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: Lucida Console,monospace;
|
||
}
|
||
|
||
// tag in a headline
|
||
.tag span {
|
||
background-color: $pale-grey;
|
||
border: 1px solid $grey;
|
||
color: #939393;
|
||
cursor: pointer;
|
||
display: block;
|
||
float: right;
|
||
font-size: 70%;
|
||
font-weight: normal;
|
||
margin: 0 3px;
|
||
padding: 5px;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
// span around keyword plus timestamp
|
||
.timestamp-wrapper {
|
||
font-size: 0.8em;
|
||
margin-left: 2em;
|
||
|
||
// Timestamp date
|
||
.timestamp {
|
||
color: $dark-blue;
|
||
font-family: Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;
|
||
}
|
||
|
||
// keyword associated with a timestamp, like ‘SCHEDULED’
|
||
.timestamp-kwd {
|
||
|
||
}
|
||
}
|
||
|
||
// Inline Task
|
||
.inlinetask {
|
||
|
||
}
|