hacks-guide-minimal-mistake.../_sass/minimal-mistakes/_notices.scss

106 lines
2 KiB
SCSS
Raw Normal View History

2016-03-10 19:06:59 +01:00
/* ==========================================================================
NOTICE TEXT BLOCKS
========================================================================== */
/**
* Default Kramdown usage (no indents!):
* <div class="notice" markdown="1">
* #### Headline for the Notice
* Text for the notice
* </div>
*/
@mixin notice($notice-color) {
margin: 2em 0 !important; /* override*/
2016-03-10 19:06:59 +01:00
padding: 1em;
color: $text-color;
font-family: $global-font-family;
2016-03-31 03:52:58 +02:00
font-size: $type-size-6 !important;
text-indent: initial; /* override*/
background-color: mix($background-color, $notice-color, $notice-background-mix);
2016-03-20 02:50:18 +01:00
border-radius: $border-radius;
box-shadow: 0 1px 1px rgba($notice-color, 0.25);
2016-03-21 21:36:24 +01:00
2016-03-10 19:06:59 +01:00
h4 {
margin-top: 0 !important; /* override*/
2016-03-10 19:06:59 +01:00
margin-bottom: 0.75em;
line-height: inherit;
2016-03-10 19:06:59 +01:00
}
2016-03-21 21:36:24 +01:00
2016-03-10 19:06:59 +01:00
@at-root .page__content #{&} h4 {
/* using at-root to override .page-content h4 font size*/
2016-03-10 19:06:59 +01:00
margin-bottom: 0;
font-size: 1em;
2016-03-10 19:06:59 +01:00
}
2016-03-21 21:36:24 +01:00
2016-03-10 19:06:59 +01:00
p {
2016-03-31 03:52:58 +02:00
&:last-child {
margin-bottom: 0 !important; /* override*/
2016-03-31 03:52:58 +02:00
}
2016-03-10 19:06:59 +01:00
}
2016-03-21 21:36:24 +01:00
2016-03-10 19:06:59 +01:00
h4 + p {
/* remove space above paragraphs that appear directly after notice headline*/
2016-03-10 19:06:59 +01:00
margin-top: 0;
padding-top: 0;
}
2016-03-21 21:36:24 +01:00
2016-04-06 03:30:25 +02:00
a {
color: mix(#000, $notice-color, 10%);
2016-04-06 03:30:25 +02:00
&:hover {
color: mix(#000, $notice-color, 50%);
2016-04-06 03:30:25 +02:00
}
}
2016-03-10 19:06:59 +01:00
code {
background-color: mix($background-color, $notice-color, $code-notice-background-mix)
2016-03-10 19:06:59 +01:00
}
2016-03-31 03:52:58 +02:00
pre code {
background-color: inherit;
}
2016-03-31 03:52:58 +02:00
ul {
&:last-child {
margin-bottom: 0; /* override*/
2016-03-31 03:52:58 +02:00
}
}
2016-03-10 19:06:59 +01:00
}
/* Default notice */
.notice {
@include notice($light-gray);
}
/* Primary notice */
.notice--primary {
2016-03-10 19:06:59 +01:00
@include notice($primary-color);
}
/* Info notice */
.notice--info {
@include notice($info-color);
}
/* Warning notice */
.notice--warning {
@include notice($warning-color);
}
/* Success notice */
.notice--success {
@include notice($success-color);
}
/* Danger notice */
.notice--danger {
@include notice($danger-color);
}