-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (49 loc) · 829 Bytes
/
Copy pathstyles.css
File metadata and controls
57 lines (49 loc) · 829 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
/* Containers */
#fileContainer, #filterContainer, #detailContainer {
display: block;
background: white;
border: 1px solid black;
padding: 10px;
position: absolute;
}
/* Filter and update buttons */
#filterContainer {
top: 0;
right: 0;
padding-bottom: 20px;
margin-bottom: 50px;
}
#updateToday, #optimizeDates {
display: block;
}
/* Details */
#detailContainer {
display: none;
bottom: 0;
left: 0;
padding-bottom: 20px;
margin-bottom: 50px;
}
#descriptionInput {
width: 100%;
height: 150px;
}
#tagsContainer {
margin-top: 10px;
}
.tag {
display: inline-block;
background-color: #ddd;
border-radius: 4px;
padding: 2px 5px;
margin: 2px;
}
.delete-tag {
cursor: pointer;
margin-left: 5px;
}
/* Files */
#fileContainer {
bottom: 0;
right: 0;
}