mkdocs-material/src/assets/stylesheets/extensions/_admonition.scss

109 lines
3.1 KiB
SCSS
Raw Normal View History

////
/// Copyright (c) 2016 Martin Donath <martin.donath@squidfunk.com>
///
/// Permission is hereby granted, free of charge, to any person obtaining a
/// copy of this software and associated documentation files (the "Software"),
/// to deal in the Software without restriction, including without limitation
/// the rights to use, copy, modify, merge, publish, distribute, sublicense,
/// and/or sell copies of the Software, and to permit persons to whom the
/// Software is furnished to do so, subject to the following conditions:
///
/// The above copyright notice and this permission notice shall be included in
/// all copies or substantial portions of the Software.
///
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
/// DEALINGS
////
2016-01-29 01:27:15 +03:00
2016-09-04 18:32:12 +03:00
// ----------------------------------------------------------------------------
// Rules
2016-09-04 18:32:12 +03:00
// ----------------------------------------------------------------------------
// Admonition extension
.admonition {
position: relative;
margin: 1.5625em 0;
padding: 0.8rem 1.2rem;
border-left: 3.2rem solid transparentize($clr-blue-a200, 0.6);
border-radius: 0.2rem;
2016-12-17 14:53:24 +03:00
background-color: transparentize($clr-blue-a200, 0.85);
font-size: ms(-1);
// Icon
&::before {
@extend %md-icon;
position: absolute;
left: -2.6rem;
color: $md-color-white;
2017-01-01 17:59:44 +03:00
font-size: 2rem;
content: "edit";
vertical-align: -0.25em;
}
2016-09-04 18:32:12 +03:00
// Remove spacing on first element
2016-09-02 23:59:14 +03:00
:first-child {
margin-top: 0;
}
2016-09-04 18:32:12 +03:00
// Remove spacing on last element
2016-09-02 23:59:14 +03:00
:last-child {
margin-bottom: 0;
}
2016-09-04 18:32:12 +03:00
// Build representational classes
@each $names, $appearance in (
2016-09-23 12:56:25 +03:00
summary tldr: $clr-light-blue-a400 "subject",
tip hint important : $clr-teal-a700 "whatshot",
success check done: $clr-green-a400 "done",
warning caution attention: $clr-orange-a400 "warning",
failure fail missing: $clr-red-a200 "clear",
danger error: $clr-red-a400 "flash_on",
bug: $clr-pink-a400 "bug_report"
) {
$tint: nth($appearance, 1);
$icon: nth($appearance, 2);
2016-09-04 18:32:12 +03:00
// Define base class
&%#{nth($names, 1)},
&.#{nth($names, 1)} {
border-color: transparentize($tint, 0.6);
2016-12-17 14:53:24 +03:00
background-color: transparentize($tint, 0.85);
// Icon
&::before {
content: $icon;
}
}
2016-09-04 18:32:12 +03:00
// Define synonyms for base class
@if length($names) > 1 {
@for $n from 2 through length($names) {
&.#{nth($names, $n)} {
@extend .admonition%#{nth($names, 1)};
}
}
}
}
}
// Title
.admonition-title {
font-weight: 700;
// Remove bottom spacing for title
html & {
margin-bottom: 0;
}
// Remove top spacing for first element following title
html & + * {
margin-top: 0;
}
}