2016-09-04 17:11:58 +02:00
|
|
|
////
|
|
|
|
/// 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-28 23:27:15 +01:00
|
|
|
|
2016-09-04 17:32:12 +02:00
|
|
|
// ----------------------------------------------------------------------------
|
2016-10-06 12:14:33 +02:00
|
|
|
// Rules
|
2016-09-04 17:32:12 +02:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2016-10-23 10:21:37 +02:00
|
|
|
@include break-to-device(tablet portrait) {
|
|
|
|
.md-search-result__link {
|
|
|
|
padding: 0 1.6rem;
|
|
|
|
}
|
|
|
|
.md-search-result__meta {
|
|
|
|
padding-left: 1.6rem;
|
2016-09-30 13:29:45 +02:00
|
|
|
}
|
2016-10-23 10:21:37 +02:00
|
|
|
}
|
2016-09-30 13:29:45 +02:00
|
|
|
|
2016-10-23 10:21:37 +02:00
|
|
|
.md-search-result {
|
2016-09-30 13:29:45 +02:00
|
|
|
|
2016-10-23 10:21:37 +02:00
|
|
|
&__meta {
|
|
|
|
color: $md-color-black--light;
|
|
|
|
padding-left: 4.8rem;
|
|
|
|
padding-right: 1.6rem;
|
|
|
|
line-height: 4.0rem;
|
|
|
|
font-size: ms(-1);
|
|
|
|
}
|
2016-09-30 13:29:45 +02:00
|
|
|
|
2016-10-23 10:21:37 +02:00
|
|
|
&__list {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
border-top: 0.1rem solid $md-color-black--lightest;
|
|
|
|
}
|
2016-09-30 13:29:45 +02:00
|
|
|
|
2016-10-23 10:21:37 +02:00
|
|
|
&__link {
|
|
|
|
overflow: auto;
|
|
|
|
display: block;
|
|
|
|
padding-left: 4.8rem;
|
|
|
|
padding-right: 1.6rem;
|
|
|
|
transition: background 0.25s;
|
2016-09-30 13:29:45 +02:00
|
|
|
|
2016-10-23 10:21:37 +02:00
|
|
|
&:hover {
|
|
|
|
background: transparentize($md-color-accent, 0.9);
|
2016-09-30 13:29:45 +02:00
|
|
|
}
|
2016-10-23 10:21:37 +02:00
|
|
|
}
|
2016-09-02 00:33:45 +02:00
|
|
|
|
2016-10-23 10:21:37 +02:00
|
|
|
&__title {
|
|
|
|
color: $md-color-black;
|
|
|
|
font-size: ms(0);
|
|
|
|
line-height: 1.4;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
2016-09-30 13:29:45 +02:00
|
|
|
|
2016-10-23 10:21:37 +02:00
|
|
|
&__description {
|
|
|
|
color: $md-color-black--light;
|
|
|
|
font-size: ms(-1);
|
|
|
|
line-height: 1.4;
|
|
|
|
margin: 0.5em 0;;
|
2016-09-02 00:33:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-30 13:29:45 +02:00
|
|
|
// .md-nav--secondary > .md-nav__title {
|
|
|
|
// // -webkit-overflow-scrolling: touch;
|
|
|
|
// @include z-depth(1);
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// // add light border for more contrast
|
|
|
|
// .md-typeset pre {
|
|
|
|
// border: 1px solid rgba(0,0,0,0.0125);
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// .md-search__suggest {
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// background: $md-color-white;
|
2016-10-21 21:15:35 +02:00
|
|
|
// border-radius: 0 0 0.3rem 0.3rem;
|
2016-09-30 13:29:45 +02:00
|
|
|
// color: #000000;
|
|
|
|
// text-align: left;
|
2016-10-21 21:15:35 +02:00
|
|
|
// border-top: 0.1rem solid $md-color-black--lightest;
|
2016-09-30 13:29:45 +02:00
|
|
|
// display: none; // TODO: doesnt work due to display: none;
|
|
|
|
// opacity: 0;
|
|
|
|
//
|
|
|
|
// // overflow: auto;
|
|
|
|
// transition: opacity .3s;
|
|
|
|
// // pointer-events: none;
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// .md-search__input:focus ~ & {
|
|
|
|
// // animation: anima .3s;
|
|
|
|
// display: block;
|
|
|
|
// opacity: 1;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
2016-10-23 10:21:37 +02:00
|
|
|
// TODO: only on tablet and bind to search active state!
|
|
|
|
// .md-search__input:focus {
|
|
|
|
// border-radius: 0.3rem 0.3rem 0 0;
|
|
|
|
// }
|
2016-09-02 00:33:45 +02:00
|
|
|
|
2016-10-23 19:31:54 +02:00
|
|
|
// @include break-to-device(mobile landscape) {
|
|
|
|
//
|
|
|
|
// .md-search__suggest {
|
|
|
|
// position: relative;
|
|
|
|
// z-index: 2;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// .md-search-term {
|
|
|
|
// position: relative;
|
|
|
|
// padding: 0 0.8rem 0 4.8rem;
|
|
|
|
// line-height: 4.0rem; // don't use line height????
|
|
|
|
// font-size: 1.6rem;
|
|
|
|
//
|
|
|
|
// &::before {
|
|
|
|
// @extend %md-icon;
|
|
|
|
//
|
|
|
|
// position: absolute;
|
|
|
|
//
|
|
|
|
// content: "access_time";
|
|
|
|
// font-size: 2.4rem;
|
|
|
|
// line-height: 4.0rem; // this sucks...
|
|
|
|
// left: 1.2rem;
|
|
|
|
// color: $md-color-black--lighter;
|
|
|
|
// }
|
|
|
|
// transition: background .25s;
|
|
|
|
// cursor: pointer;
|
|
|
|
// &:hover {
|
|
|
|
// background: mix($md-color-white, $md-color-primary, 90%);
|
|
|
|
// }
|
|
|
|
// }
|
2016-09-13 20:58:28 +02:00
|
|
|
|
2016-09-30 13:29:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-09-11 19:00:53 +02:00
|
|
|
.checklist {
|
|
|
|
|
|
|
|
li {
|
|
|
|
position: relative;
|
|
|
|
list-style-type: none;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
@extend %md-icon;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
appearance: none;
|
|
|
|
color: blue;
|
|
|
|
|
|
|
|
content: "check_box";
|
|
|
|
font-size: 2.4rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="checkbox"]:checked {
|
|
|
|
width: 20px;
|
|
|
|
// & ~ .checklist li::after {
|
|
|
|
// color: red;
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inline code blocks
|
|
|
|
ins.critic, del.critic, mark {
|
|
|
|
margin: 0 0.4rem;
|
|
|
|
padding: 0.1rem 0;
|
|
|
|
word-break: break-word;
|
|
|
|
box-decoration-break: clone;
|
|
|
|
|
|
|
|
border-radius: 0.2rem;
|
|
|
|
|
|
|
|
// &::before {
|
|
|
|
// @extend %md-icon;
|
|
|
|
//
|
|
|
|
// color: $md-color-black--light;
|
|
|
|
//
|
|
|
|
// font-size: 1.6rem;
|
|
|
|
// padding-right: 0.2rem;
|
|
|
|
// vertical-align: -0.2rem;
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
|
|
|
ins.critic {
|
|
|
|
background: #DDFFDD;
|
|
|
|
box-shadow: 0.4rem 0 0 #DDFFDD,
|
|
|
|
-0.4rem 0 0 #DDFFDD;
|
|
|
|
text-decoration: none;
|
|
|
|
// &::before {
|
|
|
|
// content: "add";
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
|
|
|
del.critic {
|
|
|
|
background: #FFDDDD;
|
|
|
|
box-shadow: 0.4rem 0 0 #FFDDDD,
|
|
|
|
-0.4rem 0 0 #FFDDDD;
|
|
|
|
//
|
|
|
|
// &::before {
|
|
|
|
// content: "remove";
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not critic-specific!
|
|
|
|
mark {
|
|
|
|
background: #FFFF00;
|
|
|
|
box-shadow: 0.4rem 0 0 #FFFF00,
|
|
|
|
-0.4rem 0 0 #FFFF00; // ligher yellow...
|
2016-09-23 20:58:55 +02:00
|
|
|
overflow: auto; // TODO: remove this, just needed to rebuild
|
2016-09-11 19:00:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.critic.comment {
|
|
|
|
margin: 0 0.4rem;
|
|
|
|
padding: 0.1rem 0;
|
|
|
|
border-radius: 0.2rem;
|
|
|
|
background: #F0F0F0;
|
|
|
|
color: #37474F;
|
|
|
|
// font-size: 85%;
|
|
|
|
box-shadow: 0.4rem 0 0 #F0F0F0,
|
|
|
|
-0.4rem 0 0 #F0F0F0; // darker than code!!!
|
|
|
|
box-decoration-break: clone;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
@extend %md-icon;
|
|
|
|
|
|
|
|
color: $md-color-black--lighter;
|
|
|
|
|
|
|
|
content: "chat";
|
|
|
|
font-size: 1.6rem;
|
|
|
|
padding-right: 0.2rem;
|
|
|
|
vertical-align: -0.2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-13 20:58:28 +02:00
|
|
|
.md-button {
|
2016-09-11 19:00:53 +02:00
|
|
|
float: right;
|
|
|
|
margin-top: 9px;
|
|
|
|
font-size: 13px;
|
|
|
|
padding-left: 2.6rem;
|
2016-09-13 20:58:28 +02:00
|
|
|
font-weight: 700;
|
|
|
|
text-transform: uppercase;
|
2016-09-11 19:00:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.task-list-item {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.task-list-item input {
|
|
|
|
margin: 0 4px 0.25em -20px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2016-09-13 20:58:28 +02:00
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
2016-09-11 19:00:53 +02:00
|
|
|
.task-list-item {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.task-list-item input[type="checkbox"] {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.task-list-item input[type="checkbox"] + label {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: -24px;
|
|
|
|
width: 16px;
|
|
|
|
margin-top: -8px;
|
|
|
|
height: 16px;
|
|
|
|
border-radius: 2px;
|
|
|
|
background: #CCC;
|
|
|
|
}
|
|
|
|
|
|
|
|
.task-list-item input[type="checkbox"]:checked + label::before {
|
|
|
|
display: block;
|
|
|
|
margin-top: -4px;
|
|
|
|
margin-left: 2px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
line-height: 1;
|
|
|
|
border-radius: 2px;
|
|
|
|
content: "✔";
|
|
|
|
color: #1EBB52;
|
|
|
|
}
|
2016-09-13 20:58:28 +02:00
|
|
|
|
|
|
|
.codehilite .hll {
|
|
|
|
background: #FFFF00;
|
|
|
|
display: block;
|
|
|
|
margin: 0 -16px;
|
|
|
|
padding: 0 16px;
|
2016-09-30 13:29:45 +02:00
|
|
|
}
|
|
|
|
|
2016-10-23 10:21:37 +02:00
|
|
|
// TODO: integrate stylelint and property order!
|
|
|
|
|
|
|
|
|
|
|
|
.md-typeset {
|
|
|
|
sup {
|
|
|
|
// background: $md-color-black--lighter;
|
|
|
|
padding: 0 0.125em;
|
|
|
|
border-radius: 0.2em;
|
|
|
|
// font-weight: bold;
|
|
|
|
// color: $md-color-white;
|
|
|
|
&[id]:target {
|
|
|
|
background: orange;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
// color: white;
|
|
|
|
}
|
|
|
|
}
|
2016-10-21 21:15:35 +02:00
|
|
|
}
|