forked from eatgrass/obsidian-pomodoro-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
40 lines (32 loc) · 792 Bytes
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
.theme-light,
.theme-dark {
--pomodoro-timer-elapsed-color: var(--color-green);
--pomodoro-timer-color: var(--text-faint);
--pomodoro-timer-text-color: var(--text-normal);
--pomodoro-timer-dot-color: var(--color-red);
}
.status-bar-item.plugin-pomodoro-timer {
padding-top: 0;
padding-bottom: 0;
}
.pomodoro-focus {
margin-left: 0.5rem;
cursor: pointer;
}
.pomodoro-tasks-item-desc * {
font-size: 0.8rem !important;
}
.pomodoro-tasks-item-desc p {
width: 100%;
line-height: 1.1;
height: 2.2em;
padding: 0;
margin: 0;
overflow: hidden;
line-break: anywhere;
}