generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
47 lines (37 loc) · 935 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
41
42
43
44
45
46
47
.budget-wrapper > table {
--table-width: 100%;
width: var(--table-width);
}
.budget-wrapper > table td {
vertical-align: middle;
}
.budget-wrapper > table td > .budget-table-cell {
padding: var(--size-2-2) var(--size-4-2);
}
.budget-wrapper > table td > .budget-table-title {
font-size: 0.9em;
font-weight: bold;
}
.budget-wrapper > table td.text-right {
text-align: right;
}
.budget-wrapper > table td.budget-name {
width: 35%;
}
.budget-wrapper > table td.budget-amount {
width: 20%;
}
.budget-wrapper > table > tr:nth-child(odd) {
background-color: var(--color-base-10);
}
.budget-wrapper > table > tr.budget-summary {
background-color: var(--color-base-40);
color: var(--color-base-10);
}
.budget-wrapper > table > tr.budget-category-summary {
background-color: var(--color-base-30);
}
.budget-wrapper > table > tr.budget-category {
background-color: var(--color-base-60);
color: var(--color-base-10);
}