mirror of https://github.com/luizdepra/hugo-coder.git

Luiz F. A. de Prá
22.56.2021 ba25ee88f45ae703a0bcfcc235d7ece82695f70f
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
.notice {
  border-radius: 0.2rem;
  position: relative;
  margin: 1rem 0;
  padding: 0 0.75rem;
  overflow: auto;
 
  .title {
    font-weight: 700;
    margin: 0 -0.75rem;
    padding: 0.2rem 3.5rem;
 
    i {
      position: absolute;
      top: 1rem;
      left: 1rem;
    }
  }
}
 
.notice.warning {
  background: $bg-color-notice-warning;
 
  .title {
    background: $bg-color-notice-warning-title;
 
    i {
    }
  }
}
 
.notice.info {
  .notice-title {
    background: $bg-color-notice-info-title;
  }
  background: $bg-color-notice-info;
}
 
.notice.note {
  .notice-title {
    background: $bg-color-notice-note-title;
  }
  background: $bg-color-notice-note;
}
 
.notice.tip {
  .notice-title {
    background: $bg-color-notice-tip-title;
  }
  background: $bg-color-notice-tip;
}