mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2026-08-04 11:35:17 -04:00
168 lines
3.2 KiB
SCSS
168 lines
3.2 KiB
SCSS
/*
|
|
* 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
|
|
* IN THE SOFTWARE.
|
|
*/
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Article appearance
|
|
* ------------------------------------------------------------------------- */
|
|
|
|
/*
|
|
* Article
|
|
*/
|
|
.article {
|
|
|
|
/*
|
|
* Differing top and bottom rubberband backgrounds in iOS web application
|
|
*/
|
|
.ios.standalone & {
|
|
background: linear-gradient(
|
|
to bottom, $white 50%, $primary 50%);
|
|
|
|
/* Hack [iOS]: Mitigate black bounding box with linear gradient */
|
|
.wrapper {
|
|
background: linear-gradient(
|
|
to bottom, $white 50%, $white 50%);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Headlines, chapters, links and inline code
|
|
*/
|
|
h1, h2, a, code {
|
|
color: $primary;
|
|
}
|
|
|
|
/*
|
|
* Lower border for main headline
|
|
*/
|
|
h1 {
|
|
border-bottom: 1px solid $black-lightest;
|
|
}
|
|
|
|
/*
|
|
* Hovered and focused links
|
|
*/
|
|
a:hover,
|
|
a:focus {
|
|
color: $accent;
|
|
}
|
|
|
|
/*
|
|
* Light permalinks
|
|
*/
|
|
.headerlink {
|
|
color: $black-lighter;
|
|
}
|
|
|
|
/*
|
|
* Data tables
|
|
*/
|
|
table {
|
|
@include drop-shadow(1);
|
|
|
|
border-radius: 3px;
|
|
|
|
/*
|
|
* Table heading
|
|
*/
|
|
th {
|
|
background: mix($primary, $white, 75%);
|
|
color: $white;
|
|
|
|
/*
|
|
* Round upper left border
|
|
*/
|
|
&:first-child {
|
|
border-top-left-radius: 3px;
|
|
}
|
|
|
|
/*
|
|
* Round upper right border
|
|
*/
|
|
&:last-child {
|
|
border-top-right-radius: 3px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Table cell
|
|
*/
|
|
td {
|
|
border-top: 1px solid rgba($black, 0.05);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Article footer
|
|
*/
|
|
.footer {
|
|
background: $primary;
|
|
color: $white;
|
|
}
|
|
|
|
/*
|
|
* Copyright and theme information
|
|
*/
|
|
.copyright {
|
|
color: $black-light;
|
|
}
|
|
|
|
/*
|
|
* Pagination
|
|
*/
|
|
.pagination {
|
|
|
|
/*
|
|
* Inherit color for links
|
|
*/
|
|
a .title, a .button {
|
|
color: $white;
|
|
}
|
|
|
|
/*
|
|
* Smaller font size for direction
|
|
*/
|
|
.direction {
|
|
color: $white-light;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Admonition support
|
|
*/
|
|
.admonition {
|
|
background: mix($light-blue-500, $white, 10%);
|
|
|
|
/*
|
|
* Embedded code blocks
|
|
*/
|
|
pre {
|
|
background: $white-lighter;
|
|
}
|
|
|
|
/*
|
|
* A warning hint
|
|
*/
|
|
&.warning {
|
|
background: mix($red-500, $white, 10%);
|
|
}
|
|
} |