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

_shortcode_notice.scss « _post « _partial « sass « assets - github.com/xianmin/hugo-theme-jane.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ffd69c4c86141cfbae07ca7a93e9c3ff8df0c4c (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
// ==============================
// Shortcode Notice
// ==============================

.shortcode-notice p {
  padding: 0.6em 1em;
  display: block;
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 0;
  color: #666;
}

.shortcode-notice-title {
  color: #fff;
  padding-left: 1em;
  font-weight: bold;
  text-transform: capitalize;
}

// note color
.shortcode-notice-title.note {
  background-color: #6AB0DE;
}

.shortcode-notice.note p {
  background: #E7F2FA;
}

// tip color
.shortcode-notice-title.tip{
  background-color: rgba(92, 184, 92, 0.8);
}

.shortcode-notice.tip p {
  background: #E6F9E6;
}

// info color
.shortcode-notice-title.info {
  background-color: #F0B37E;
}

.shortcode-notice.info p {
  background: #FFF2DB;
}

// warning color
.shortcode-notice-title.warning {
  background-color: rgba(217, 83, 79, 0.8);
}

.shortcode-notice.warning p {
  background: #FAE2E2;
}