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

notice.scss_f300667da4f5b5f84e1a9e0702b2fdde.content « shortcodes « sass « scss « assets « _gen « resources « exampleSite - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8ecd8585531038aa2141c29c7f822ac2787fdf4 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
div.notices {
  margin-top: 1rem;
  margin-bottom: 1rem; }

div.notices > * {
  background: white;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  box-sizing: border-box;
  box-shadow: inset 4px 0 0 black;
  background-color: #e6e6e6;
  font-size: smaller; }

div.notices > *:not(ul) {
  /*box-shadow: inset 4px 0 0 black;*/
  /*border-radius: .2rem;*/
  padding: .5rem 1rem .5rem 1rem; }

div.notices label {
  font-size: 0.5em;
  position: absolute;
  margin-left: 0em;
  margin-top: -1.8em;
  font-weight: bold;
  font-variant: small-caps;
  letter-spacing: 0.6em; }

div.notices.note p {
  box-shadow: inset 4px 0 0 #007bff;
  background: rgba(0, 123, 255, 0.05);
  color: #004a99 !important; }

div.notices.note label {
  color: #007bff; }

div.notices.primary p {
  box-shadow: inset 4px 0 0 #007bff;
  background: rgba(0, 123, 255, 0.05);
  color: #004a99 !important; }

div.notices.primary label {
  color: #007bff; }

div.notices.secondary p {
  box-shadow: inset 4px 0 0 #6c757d;
  background: rgba(108, 117, 125, 0.05);
  color: #3d4246 !important; }

div.notices.secondary label {
  color: #6c757d; }

div.notices.success p, div.notices.tip p {
  box-shadow: inset 4px 0 0 #28a745;
  background: rgba(40, 167, 69, 0.05);
  color: #145523 !important; }

div.notices.success label, div.notices.tip label {
  color: #28a745; }

div.notices.danger p {
  box-shadow: inset 4px 0 0 #dc3545;
  background: rgba(220, 53, 69, 0.05);
  color: #921925 !important; }

div.notices.danger label {
  color: #dc3545; }

div.notices.warning > * {
  box-shadow: inset 4px 0 0 #ffc107;
  background: rgba(255, 193, 7, 0.05);
  color: #a07800 !important; }

div.notices.warning label {
  color: #ffc107; }

div.notices.info p {
  box-shadow: inset 4px 0 0 #17a2b8;
  background: rgba(23, 162, 184, 0.05);
  color: #0c525d !important; }

div.notices.info label {
  color: #17a2b8; }

div.notices.light p {
  box-shadow: inset 4px 0 0 #f8f9fa;
  background: rgba(248, 249, 250, 0.05);
  color: #bdc6d0 !important; }

div.notices.light label {
  color: #f8f9fa; }

div.notices.dark p {
  box-shadow: inset 4px 0 0 #343a40;
  background: rgba(52, 58, 64, 0.05);
  color: #060708 !important; }

div.notices.dark label {
  color: #343a40; }

div.notices.white p {
  box-shadow: inset 4px 0 0 #fff;
  background: rgba(255, 255, 255, 0.05);
  color: whiteen(#fff, 20%) !important; }

div.notices.white label {
  color: #fff; }

div.notices.transparent p {
  box-shadow: inset 4px 0 0 transparent;
  background: rgba(0, 0, 0, 0);
  color: transparenten(transparent, 20%) !important; }

div.notices.transparent label {
  color: transparent; }