blob: cc540740c5d6c8672d2ae50d6c62086c8c879533 (
plain)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
.checklist {
z-index: 19;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: calc(100vh - 3rem);
transform: translateZ(0) translateY(100vh);
transition: transform 0.4s;
background: white;
color: black;
font-size: 16px;
padding: 0;
}
.checklist-open .checklist {
transition: transform 0.2s !important;
transform: translateZ(0) translateY(0);
}
.checklist-container {
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
}
.checklist-inner {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
margin: 0 auto;
width: 68rem;
}
/* dropdown */
.checklist-dropdown-container {
width: 12rem;
margin-top: 1.5rem;
cursor: pointer;
position: relative;
position: absolute;
left: calc(50% - 33rem);
}
.checklist-dropdown-placeholder {
width: 13.5rem;
}
.checklist-dropdown {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
border: 1px solid black;
padding-left: 0.5rem;
}
.checklist-dropdown .arrow-box {
display: flex;
justify-content: center;
align-items: center;
padding: 0 0.5rem;
border-left: 1px solid black;
}
.checklist-dropdown .arrow {
width: 2.5rem;
height: 2rem;
}
.checklist-dropdown-options {
border-left: 1px solid black;
border-right: 1px solid black;
border-bottom: 1px solid black;
transition: height 0.2s;
overflow: hidden;
position: relative;
top: -1px;
}
.checklist-dropdown-options.open {
top: 0;
}
.checklist-dropdown-options div {
padding: 0.25rem 0.5rem;
transition: all 0.1s;
}
.checklist-dropdown-options div:hover {
color: white;
background: black;
}
/* checklist content */
.checklist-content {
flex: 1;
}
.checklist-table {
width: 51rem;
margin-top: 1.5rem;
margin-left: 1rem;
margin-bottom: 3rem;
margin-right: 1.5rem;
}
.checklist-section {
border-top: 1px solid;
}
.checklist-row {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.checklist-row > div {
width: 25%;
padding-right: 1rem;
}
.checklist-row > div.media-image {
padding-right: 0;
display: flex;
justify-content: flex-end;
}
.checklist-row .media-type {
display: block;
padding-top: 0.5rem;
font-size: 12px;
}
.checklist-row .media-thumbnail {
position: relative;
cursor: pointer;
}
.checklist-row .media-thumbnail img {
max-width: 12rem;
}
.checklist-row .play-button {
position: absolute;
top: 50%;
left: 50%;
transform: translateZ(0) translateX(-50%) translateY(-50%);
border: 1px solid white;
width: 3rem;
height: 3rem;
border-radius: 50%;
}
.checklist-row .play-button svg {
width: 100%;
height: 100%;
position: relative;
left: 0.125rem;
}
.checklist-row .play-button svg polygon {
fill: white;
}
|