-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (66 loc) · 1.44 KB
/
styles.css
File metadata and controls
73 lines (66 loc) · 1.44 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
65
66
67
68
69
70
71
72
73
.vc-rdms-background {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 6px;
width: 168px;
height: 95px;
border-radius: 10px;
background: var(--background-floating);
}
.vc-rdms-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
background-size: cover;
}
.vc-rdms-name {
margin-top: 8px;
color: var(--header-primary);
font-size: 12px;
max-width: 152px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
}
.vc-rdms-page-indicator-container {
display: flex;
gap: 8px;
align-items: center;
justify-content: center;
margin-top: 10px;
}
.vc-rdms-page-indicator {
width: 8px;
height: 8px;
border-radius: 50%;
}
.vc-rdms-overlay-container {
display: grid;
place-items: center;
position: fixed;
inset: 0;
background: rgb(0 0 0 / 38%);
backdrop-filter: blur(2px);
pointer-events: none;
}
.vc-rdms-cards-container {
display: flex;
flex-direction: column;
gap: 8px;
align-items: center;
justify-content: center;
padding: 12px 16px;
border-radius: 12px;
background: color-mix(in oklab, var(--background-floating) 85%, transparent);
backdrop-filter: saturate(120%);
box-shadow: 0 6px 24px rgb(0 0 0 / 25%);
}
.vc-rdms-cards {
display: flex;
gap: 12px;
align-items: center;
justify-content: center;
}