-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselect.css
More file actions
42 lines (38 loc) · 1.17 KB
/
select.css
File metadata and controls
42 lines (38 loc) · 1.17 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
* { overflow-x: hidden; }
#main > div:first-of-type
{
display: flex;
height: 32px; width: 100vw;
border-bottom: var(--window-border) solid var(--border-width);
}
#main > div:first-of-type > button { height: 100%; }
#main > div:last-of-type
{
display: block;
height: 100%; width: 100vw;
}
#main > div:last-of-type > div { display: inline-flex; padding: 8px; width: 320px; }
#main > div:last-of-type > div > img { min-width: 72px; max-width: 72px; height: fit-content; padding-right: 8px; cursor: pointer; transition: all 100ms; }
#main > div:last-of-type > div > img:hover { filter: brightness(0.9); }
#main > div:last-of-type > div > div > h4 { margin: 0; font-weight: bolder; font-size: x-large; }
#main > div:last-of-type > div > div > p:first-of-type
{
opacity: 0.8;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
#main > div:last-of-type > div > div > p { opacity: 0.5; }
#main > div:last-of-type > div[selected] { filter: opacity(0.7); }
#main > input
{
width: -webkit-fill-available;
border-top: 0;
}
#finish
{
position: fixed;
bottom: 16px; right: 16px;
font-size: larger;
}