Welcome to mirror list, hosted at ThFree Co, Russian Federation.

chips.pug « contents « src « docs - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ac2a2538a7ea34a996f6e1726e14fb4645c1572 (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
p Chips are complex entities in small blocks. 

.docs-demo.columns
  .column.col-12
    span.chip
      | Crime
    span.chip
      | Drama
    span.chip
      | Biography
      a.btn.btn-clear(href="#" aria-label="Close" role="button")
    span.chip
      | Mystery
      a.btn.btn-clear(href="#" aria-label="Close" role="button")
  .column.col-12
    .chip
      figure.avatar.avatar-sm(data-initial="TS" style="background-color: #5755d9;")
      | Tony Stark
    .chip
      img.avatar.avatar-sm(src="img/avatar-1.png" alt="Thor Odinson")
      | Thor Odinson
    .chip
      img.avatar.avatar-sm(src="img/avatar-4.png" alt="Steve Rogers")
      | Steve Rogers

p
  | Add a container element with the #[code chip] class.
  | And add child text element, buttons or avatars with the #[code avatar] class.

pre.code(data-lang='HTML')
  code
    :highlight(lang="html")
      <span class="chip">Crime</span>
  
      <span class="chip">
        Biography
        <a href="#" class="btn btn-clear" aria-label="Close" role="button"></a>
      </span>

      <div class="chip">
        <img src="img/avatar-1.png" class="avatar avatar-sm">
        Yan Zhu
        <a href="#" class="btn btn-clear" aria-label="Close" role="button"></a>
      </div>