Previews

No matching results.

Pages

No matching results.

x
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
<div class="list">
<div class="list-row flex items-center gap">
<span class="avatar avatar--lg self-start">
<img alt="ER" src="/assets/cartoon-93de1535.jpg" />
</span>
<div class="flex flex-1 flex-col">
<h5 class="leading-none font-medium mbe-1">Evil Rabbit</h5>
<p class="text-subtle">Last seen 5 months ago</p>
</div>
<button type="button" class="btn btn--icon btn--icon-sm" aria-label="Invite">
<span class="icon icon--plus" aria-hidden="true"></span>
</button>
</div>
<div class="list-row flex items-center gap">
<div class="avatar-group self-start">
<span class="avatar show@sm"><img alt="CN" src="/assets/lazaronixon-0f93f06b.jpg" /></span>
<span class="avatar show@sm"><img alt="LR" src="/assets/elon-09bae285.jpg" /></span>
<span class="avatar"><img alt="ER" src="/assets/cartoon-93de1535.jpg" /></span>
</div>
<div class="flex flex-1 flex-col">
<h5 class="leading-none font-medium mbe-1">No Team Members</h5>
<p class="text-subtle">Invite your team to collaborate on this project.</p>
</div>
<button type="button" class="btn btn--sm">Invite</button>
</div>
</div>
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
<div class="list">
<div class="list-row flex items-center gap">
<span class="avatar avatar--lg self-start">
<%= image_tag "cartoon.jpg", alt: "ER" %>
</span>
<div class="flex flex-1 flex-col">
<h5 class="leading-none font-medium mbe-1">Evil Rabbit</h5>
<p class="text-subtle">Last seen 5 months ago</p>
</div>
<button type="button" class="btn btn--icon btn--icon-sm" aria-label="Invite">
<span class="icon icon--plus" aria-hidden="true"></span>
</button>
</div>
<div class="list-row flex items-center gap">
<div class="avatar-group self-start">
<span class="avatar show@sm"><%= image_tag "lazaronixon.jpg", alt: "CN" %></span>
<span class="avatar show@sm"><%= image_tag "elon.jpg", alt: "LR" %></span>
<span class="avatar"><%= image_tag "cartoon.jpg", alt: "ER" %></span>
</div>
<div class="flex flex-1 flex-col">
<h5 class="leading-none font-medium mbe-1">No Team Members</h5>
<p class="text-subtle">Invite your team to collaborate on this project.</p>
</div>
<button type="button" class="btn btn--sm">Invite</button>
</div>
</div>
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
.list {
display: flex;
flex-direction: column;
row-gap: var(--list-gap, var(--size-4));
}
.list-row {
background-color: var(--list-background, transparent);
border: 1px solid var(--list-border-color, var(--color-border));
border-radius: var(--rounded-xl);
font-size: var(--text-sm);
padding: var(--list-padding, .625rem .75rem);
}
.list-row__media {
align-self: start;
block-size: var(--list-row-media-size, 2.5rem);
border-radius: var(--rounded-md);
flex-shrink: 0;
inline-size: var(--list-row-media-size, 2.5rem);
object-fit: cover;
}
.list-row--muted {
--list-background: rgb(from var(--color-border-light) r g b / .5);
}
.list-row--borderless {
--list-border-color: transparent;
}
.list-row--link:hover {
--list-background: rgb(from var(--color-border-light) r g b / .5);
}
.list-row--link:focus-visible {
outline: 2px solid var(--color-selected-dark);
}
.list-row--check:has(:checked) {
--list-background: rgb(from var(--color-border-light) r g b / .5);
--list-border-color: var(--color-primary);
}
Java Script is not required or multiple files are needed, check the notes.