-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcss_finance.css
More file actions
58 lines (49 loc) · 939 Bytes
/
css_finance.css
File metadata and controls
58 lines (49 loc) · 939 Bytes
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
48
49
50
51
52
53
54
55
56
57
58
@CHARSET "UTF-8";
div.update-categories {
margin: 10px 5px 5px 5px;
padding: 5px 5px 5px 5px;
border: 2px solid gray;
text-align: center;
}
div.update-categories > div.sub-title {
text-align: left;
}
div.link-top {
width: 100%;
text-align: right;
}
div.update-categories > div.checkbox-row{
padding: 2px 2px 2px 2px;
}
div.form-row {
display: flex;
gap: 1em; /* spacing between fields */
}
div.form-field {
display: flex;
flex-direction: column; /* label above input */
}
/* row with checkboxes for filter */
.checkbox-row {
display: flex;
align-items: center;
gap: 0.5em; /* spacing between items */
}
/* row selector */
.state {
cursor: pointer;
user-select: none;
vertical-align: middle;
}
.unpinned {
font-size: 0.9rem;
opacity: 0.3; /* faded */
}
.pinned {
font-size: 0.9rem;
opacity: 1;
}
.selected {
font-size: 1.2em;
color: green;
}