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

toasts.pug « components « src « docs - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 718300b7449a82244e1daad8b27a174aefbf43dd (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
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
extends ../_layout/_docs-layout.pug

block variables
  - var slug = 'toasts'
  - var parent = 'components'
  - var title = 'Toasts - Components - Spectre.css CSS Framework'
  - var description = 'Spectre.css is a lightweight, responsive and modern CSS framework for faster and extensible development. Spectre provides basic styles for typography and elements, flexbox based responsive layout system, pure CSS components and utilities with best practice coding and consistent design language.'

block docs-content
  +docs-heading('toasts', 'Toasts')
    include ../_layout/_ad-g.pug

    p Toasts are used to show alert or information to users.

    .docs-demo.columns
      .column.col-9.col-sm-12
        .toast
          button.btn.btn-clear.float-right
          h6 Toast Title
          p
            | Lorem ipsum dolor sit amet, consectetur adipiscing elit.
      .column.col-9.col-sm-12
        .toast.toast-primary
          button.btn.btn-clear.float-right
          p
            | Lorem ipsum dolor sit amet, consectetur adipiscing elit.

    p
      | Add a container element with the #[code toast] class.
      | You can add any text within the container, and even icons. 
      | You may also add a close button with the #[code btn-clear] class if you need.

    pre.code(data-lang='HTML')
      code
        :highlight(lang="html")
          <div class="toast">
            Lorem ipsum dolor sit amet, consectetur adipiscing elit.
          </div>

    .docs-demo.columns
      .column.col-sm-12
        .toast.toast-success
          button.btn.btn-clear.float-right
          p
            | Toast success
      .column.col-sm-12
        .toast.toast-warning
          button.btn.btn-clear.float-right
          p
            | Toast warning
      .column.col-sm-12
        .toast.toast-error
          button.btn.btn-clear.float-right
          p
            | Toast error

    p
      | And you can add the #[code toast-primary], #[code toast-success], #[code toast-warning] or #[code toast-error] class for additional toast colors.

    pre.code(data-lang='HTML')
      code
        :highlight(lang="html")
          <div class="toast toast-primary">
            <button class="btn btn-clear float-right"></button>
            Lorem ipsum dolor sit amet, consectetur adipiscing elit.
          </div>

    include ../_layout/_ad-c.pug

  include ../_layout/_footer.pug