feat(aio): callout, code ex header styles
lighten up code ex background
This commit is contained in:
parent
624b5a5f83
commit
a2bdcc9ba8
|
@ -0,0 +1,47 @@
|
||||||
|
.callout {
|
||||||
|
@extend .alert;
|
||||||
|
padding: 0px;
|
||||||
|
border-left: none !important;
|
||||||
|
border-radius: 4px;
|
||||||
|
|
||||||
|
header {
|
||||||
|
color: $white;
|
||||||
|
line-height: 24px;
|
||||||
|
font-weight: 500;
|
||||||
|
text-transform: uppercase;
|
||||||
|
border-radius: 4px 4px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
padding: 16px;
|
||||||
|
margin: 0px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.is-critical {
|
||||||
|
border-color: $brightred;
|
||||||
|
background: rgba($brightred, 0.05);
|
||||||
|
|
||||||
|
header {
|
||||||
|
background: $brightred;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.is-important {
|
||||||
|
border-color: $orange;
|
||||||
|
background: rgba($orange, 0.05);
|
||||||
|
|
||||||
|
header {
|
||||||
|
background: $amber-700;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.is-helpful {
|
||||||
|
border-color: $blue;
|
||||||
|
background: rgba($blue, 0.05);
|
||||||
|
|
||||||
|
header {
|
||||||
|
background: $blue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
code-example,
|
code-example,
|
||||||
code-tabs md-tab-body {
|
code-tabs md-tab-body {
|
||||||
background-color: $backgroundgray;
|
background-color: rgba($backgroundgray, 0.2);
|
||||||
border: 0.5px solid $lightgray;
|
border: 0.5px solid $lightgray;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
color: $darkgray;
|
color: $darkgray;
|
||||||
|
@ -20,8 +20,7 @@ code-example.code-shell, code-example[language=sh], code-example[language=bash]
|
||||||
}
|
}
|
||||||
|
|
||||||
code-example header {
|
code-example header {
|
||||||
background-color: $mediumgray;
|
background-color: $accentblue;
|
||||||
border: 0.5px solid $mediumgray;
|
|
||||||
border-radius: 5px 5px 0 0;
|
border-radius: 5px 5px 0 0;
|
||||||
color: $offwhite;
|
color: $offwhite;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
|
|
@ -20,4 +20,5 @@
|
||||||
@import 'api-list';
|
@import 'api-list';
|
||||||
@import 'hr';
|
@import 'hr';
|
||||||
@import 'live-example';
|
@import 'live-example';
|
||||||
@import 'scrollbar';
|
@import 'scrollbar';
|
||||||
|
@import 'callout';
|
Loading…
Reference in New Issue