-
Notifications
You must be signed in to change notification settings - Fork 158
/
index.css
90 lines (84 loc) · 1.56 KB
/
index.css
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
body {
margin: 0px;
}
#assets {
min-height: 1px;
}
.assets-table {
display: flex;
}
#open-dialog-button {
margin-top: 15px;
cursor: pointer;
user-select: none;
display: none;
height: 32px;
line-height: 16px;
min-width: 64px;
padding: 0px 8px;
background-color: rgb(240, 242, 247);
box-sizing: border-box;
border: 2px solid;
border-color: transparent;
border-radius: 4px;
text-align: center;
font-family: 'Inter', Arial, sans-serif;
font-weight: 500;
font-size: 13px;
color: rgb(102, 99, 253);
}
#open-dialog-button:active {
border: 2px solid rgba(98, 110, 153, 0.3);
}
.previewdiv {
margin-bottom: 5px;
display: flex;
position: relative;
}
.previewelt {
cursor: pointer;
width: 400px;
border-radius: 2px;
display: inline-block;
}
.previewdiv-table {
display: flex;
position: relative;
height: 59px;
margin-right: 10px;
}
.previewelt-table {
cursor: pointer;
object-fit: cover;
height: 100%;
display: inline-block;
}
.overlay-text {
margin: 0px;
position: absolute;
top: 0px;
left: 0px;
border-radius: 2px;
color: white;
background-color: rgba(0, 0, 0, 0.5);
font-family: 'Inter', Arial, sans-serif;
font-size: 10px;
padding: 3px;
}
.remove-asset-button {
margin-left: 10px;
cursor: pointer;
box-sizing: border-box;
user-select: none;
color: rgb(102, 99, 253);
background-color: transparent;
text-align: center;
line-height: 14px;
display: inline-flex;
border: 0px;
font-weight: 500;
font-family: sans-serif;
font-size: 12px;
vertical-align: middle;
padding: 4px;
}