-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskTable.css
More file actions
64 lines (59 loc) · 1.16 KB
/
TaskTable.css
File metadata and controls
64 lines (59 loc) · 1.16 KB
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
59
60
61
62
63
64
.task-table {
max-width: 1200px;
max-height: 600px;
height: 100%;
width: 100%;
background-color: var(--grey-8);
font-family: "Articulat-cf", sans-serif;
font-weight: 300;
display: block;
position: relative;
border-radius: 5px;
padding-top: 60px;
box-sizing: border-box;
overflow: hidden;
border: solid var(--grey-2) 1px;
z-index: 0;
box-shadow: var(--grey-6) 4px 4px 10px 1px;
}
.tt-view {
height: 100%;
width: 100%;
}
.tt-table-area {
overflow-y: scroll;
display: block;
height: 100%;
background-color: var(--grey-8);
border-radius: 0px;
}
.tt-toolbar {
position: absolute;
bottom: 0%;
left: 0%;
display: flex;
height: 60px;
width: 100%;
align-items: center;
justify-content: end;
z-index: 1;
background-color: transparent;
}
.tt-toolbar img {
height: 40px;
width: 40px;
padding: 5px;
object-fit: contain;
margin-right: 10px;
transition-duration: 150ms;
background-color: var(--grey-8);
border: solid var(--blue-6) 1px;
border-radius: 25%;
box-shadow: var(--grey-6) 1px 1px 2px 1px;
}
@media only screen and (max-width: 1400px) {
.task-table {
padding-top: 0px;
height: 80dvh;
}
}