2020-05-03 22:52:23 +03:00
|
|
|
|
/*
|
2021-01-23 08:20:58 +03:00
|
|
|
|
The common styles
|
2019-09-30 15:38:41 +03:00
|
|
|
|
*/
|
2020-12-24 14:37:33 +03:00
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Source+Sans+Pro:wght@400;600;900&display=swap');
|
|
|
|
|
|
2020-02-27 16:05:50 +03:00
|
|
|
|
@mixin mode-toggle($dark-mode: false) {
|
|
|
|
|
@if $dark-mode {
|
|
|
|
|
@include dark-scheme;
|
|
|
|
|
} @else {
|
|
|
|
|
@include light-scheme;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
html:not([mode]),
|
|
|
|
|
html[mode=light] {
|
2020-02-27 16:05:50 +03:00
|
|
|
|
@include mode-toggle();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html[mode=dark] {
|
|
|
|
|
@include mode-toggle(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
2021-01-27 15:06:31 +03:00
|
|
|
|
html:not([mode]),
|
|
|
|
|
html[mode=dark] {
|
2020-02-27 16:05:50 +03:00
|
|
|
|
@include mode-toggle(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html[mode=light] {
|
|
|
|
|
@include mode-toggle();
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-16 22:06:38 +03:00
|
|
|
|
|
2020-12-24 17:51:08 +03:00
|
|
|
|
:root {
|
2019-10-16 18:20:51 +03:00
|
|
|
|
font-size: 16px;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
line-height: 1.75rem;
|
2020-02-27 16:05:50 +03:00
|
|
|
|
background: var(--body-bg);
|
|
|
|
|
color: var(--text-color);
|
2019-09-30 15:38:41 +03:00
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
font-family: 'Source Sans Pro', 'Microsoft Yahei', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
/* --- Typography --- */
|
2020-05-31 21:31:13 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
h1 {
|
|
|
|
|
@extend %heading;
|
2020-05-31 21:31:13 +03:00
|
|
|
|
|
2021-12-05 18:44:04 +03:00
|
|
|
|
font-size: 1.9rem;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
h2 {
|
|
|
|
|
@extend %heading;
|
|
|
|
|
@extend %section;
|
2021-12-05 21:40:51 +03:00
|
|
|
|
@extend %anchor-relative;
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
2021-12-05 18:44:04 +03:00
|
|
|
|
font-size: 1.5rem;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
2020-02-26 23:00:01 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
h3 {
|
|
|
|
|
@extend %heading;
|
|
|
|
|
@extend %section;
|
2021-12-09 15:45:20 +03:00
|
|
|
|
@extend %anchor;
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
2021-12-05 18:44:04 +03:00
|
|
|
|
font-size: 1.2rem;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
h4 {
|
|
|
|
|
@extend %heading;
|
|
|
|
|
@extend %section;
|
|
|
|
|
@extend %anchor;
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
font-size: 1.15rem;
|
|
|
|
|
}
|
2020-02-26 23:00:01 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
h5 {
|
|
|
|
|
@extend %heading;
|
|
|
|
|
@extend %section;
|
|
|
|
|
@extend %anchor;
|
2020-02-26 23:00:01 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
}
|
2020-02-26 23:00:01 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
ol,
|
|
|
|
|
ul {
|
|
|
|
|
ol,
|
|
|
|
|
ul {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-26 23:00:01 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
a {
|
|
|
|
|
@extend %link-color;
|
|
|
|
|
}
|
2020-02-26 23:00:01 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
img {
|
|
|
|
|
max-width: 100%;
|
2021-06-30 14:08:42 +03:00
|
|
|
|
height: auto;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
blockquote {
|
|
|
|
|
border-left: 5px solid var(--blockquote-border-color);
|
|
|
|
|
padding-left: 1rem;
|
|
|
|
|
color: var(--blockquote-text-color);
|
|
|
|
|
}
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
kbd {
|
2022-01-02 11:28:42 +03:00
|
|
|
|
font-family: inherit;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
line-height: 1.3rem;
|
|
|
|
|
min-width: 1.75rem;
|
|
|
|
|
text-align: center;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
margin: 0 0.3rem;
|
2022-01-02 11:28:42 +03:00
|
|
|
|
padding-top: 0.1rem;
|
|
|
|
|
color: var(--kbd-text-color);
|
|
|
|
|
background-color: var(--kbd-bg-color);
|
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
|
border: solid 1px var(--kbd-wrap-color);
|
|
|
|
|
box-shadow: inset 0 -2px 0 var(--kbd-wrap-color);
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
footer {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
padding: 0 1rem;
|
|
|
|
|
height: $footer-height;
|
|
|
|
|
font-size: 0.8rem;
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
> div.d-flex {
|
|
|
|
|
line-height: 1.2rem;
|
|
|
|
|
width: 95%;
|
|
|
|
|
max-width: 1045px;
|
|
|
|
|
border-top: 1px solid var(--main-border-color);
|
|
|
|
|
margin-bottom: 1rem;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
> div {
|
|
|
|
|
width: 350px;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
a {
|
2021-12-04 22:23:00 +03:00
|
|
|
|
@extend %text-color;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
&:link {
|
|
|
|
|
@include no-text-decoration;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
&:hover {
|
|
|
|
|
@extend %link-hover;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
@include no-text-decoration;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
.footer-right {
|
|
|
|
|
text-align: right;
|
2019-11-06 13:06:10 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-02 12:54:36 +03:00
|
|
|
|
i { // fontawesome icons
|
|
|
|
|
&.far,
|
|
|
|
|
&.fas {
|
|
|
|
|
@extend %no-cursor;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-03 11:36:40 +03:00
|
|
|
|
@keyframes fade-in {
|
|
|
|
|
from { opacity: 0; }
|
|
|
|
|
to { opacity: 1; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img[data-src] {
|
|
|
|
|
margin: 0.5rem 0;
|
|
|
|
|
|
|
|
|
|
&[data-loaded=true] {
|
|
|
|
|
animation: fade-in linear 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.left {
|
|
|
|
|
float: left;
|
|
|
|
|
margin: 0.75rem 1rem 1rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
|
float: right;
|
|
|
|
|
margin: 0.75rem 0 1rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.shadow {
|
|
|
|
|
filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.08));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
/* --- Panels --- */
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
.access {
|
|
|
|
|
top: 2rem;
|
|
|
|
|
transition: top 0.2s ease-in-out;
|
|
|
|
|
margin-right: 1.5rem;
|
|
|
|
|
margin-top: 3rem;
|
|
|
|
|
margin-bottom: 4rem;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
&:only-child {
|
|
|
|
|
position: -webkit-sticky; /* Safari */
|
|
|
|
|
position: sticky;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-10-27 00:14:33 +03:00
|
|
|
|
> div {
|
2020-02-25 12:56:03 +03:00
|
|
|
|
padding-left: 1rem;
|
2020-02-27 16:05:50 +03:00
|
|
|
|
border-left: 1px solid var(--main-border-color);
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-02-28 19:16:47 +03:00
|
|
|
|
&:not(:last-child) {
|
|
|
|
|
margin-bottom: 4rem;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
.post-content {
|
2020-10-27 17:08:04 +03:00
|
|
|
|
font-size: 0.9rem;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-01 16:49:51 +03:00
|
|
|
|
#panel-wrapper {
|
2021-12-30 19:29:25 +03:00
|
|
|
|
// the headings
|
|
|
|
|
.panel-heading {
|
2021-12-07 15:08:53 +03:00
|
|
|
|
@include label(inherit);
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
.post-tag {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
line-height: 1rem;
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
background: none;
|
2020-02-27 16:05:50 +03:00
|
|
|
|
border: 1px solid var(--btn-border-color);
|
2020-10-27 17:08:04 +03:00
|
|
|
|
border-radius: 0.8rem;
|
2020-12-18 15:54:18 +03:00
|
|
|
|
padding: 0.3rem 0.5rem;
|
|
|
|
|
margin: 0 0.35rem 0.5rem 0;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
&:hover {
|
|
|
|
|
background-color: #2a408e;
|
|
|
|
|
border-color: #2a408e;
|
|
|
|
|
color: #fff;
|
|
|
|
|
transition: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-08 12:07:18 +03:00
|
|
|
|
|
2022-01-09 14:09:29 +03:00
|
|
|
|
[topbar-visible=true] & > div {
|
2021-12-08 12:07:18 +03:00
|
|
|
|
top: 6rem;
|
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
#access-lastmod {
|
2021-01-27 15:06:31 +03:00
|
|
|
|
li {
|
|
|
|
|
height: 1.8rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
-webkit-line-clamp: 1;
|
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
list-style: none;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
a {
|
|
|
|
|
&:hover {
|
|
|
|
|
@extend %link-hover;
|
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
|
|
|
|
@extend %no-bottom-border;
|
|
|
|
|
|
2021-04-05 15:02:17 +03:00
|
|
|
|
color: inherit;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2020-12-24 14:37:33 +03:00
|
|
|
|
.footnotes > ol {
|
|
|
|
|
padding-left: 2rem;
|
2020-10-27 17:08:04 +03:00
|
|
|
|
margin-top: 0.5rem;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-10-27 17:08:04 +03:00
|
|
|
|
> li {
|
2020-12-31 16:37:17 +03:00
|
|
|
|
&:not(:last-child) {
|
|
|
|
|
margin-bottom: 0.3rem;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-12-24 14:37:33 +03:00
|
|
|
|
> p {
|
|
|
|
|
margin-left: 0.25em;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 0;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
// [scroll-focus] added by `smooth-scroll.js`
|
|
|
|
|
&:target:not([scroll-focus]),
|
|
|
|
|
&[scroll-focus=true] > p {
|
2020-02-27 16:05:50 +03:00
|
|
|
|
background-color: var(--footnote-target-bg);
|
2020-02-25 12:56:03 +03:00
|
|
|
|
width: fit-content;
|
2021-12-30 19:29:25 +03:00
|
|
|
|
-webkit-transition: background-color 1.5s ease-in-out; /* Safari prior 6.1 */
|
2020-02-25 12:56:03 +03:00
|
|
|
|
transition: background-color 1.5s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
.footnote {
|
|
|
|
|
@at-root a#{&} {
|
2020-12-31 16:37:17 +03:00
|
|
|
|
@include ml-mr(1px);
|
|
|
|
|
@include pl-pr(2px);
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
border-bottom-style: none !important;
|
2021-12-30 19:29:25 +03:00
|
|
|
|
-webkit-transition: background-color 1.5s ease-in-out; /* Safari prior 6.1 */
|
2020-02-25 12:56:03 +03:00
|
|
|
|
transition: background-color 1.5s ease-in-out;
|
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
|
|
|
|
// [scroll-focus] added by `smooth-scroll.js`
|
|
|
|
|
@at-root sup:target:not([scroll-focus]),
|
|
|
|
|
sup[scroll-focus=true] > a#{&} {
|
2020-02-27 16:05:50 +03:00
|
|
|
|
background-color: var(--footnote-target-bg);
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
.reversefootnote {
|
|
|
|
|
@at-root a#{&} {
|
2020-10-27 17:08:04 +03:00
|
|
|
|
font-size: 0.6rem;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
line-height: 1;
|
2021-10-31 17:56:22 +03:00
|
|
|
|
position: relative;
|
|
|
|
|
bottom: 0.25em;
|
|
|
|
|
margin-left: 0.25em;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
border-bottom-style: none !important;
|
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
/* --- Begin of Markdown table style --- */
|
2020-12-24 19:22:21 +03:00
|
|
|
|
|
2021-12-30 19:29:25 +03:00
|
|
|
|
// it will be created by Liquid
|
|
|
|
|
.table-wrapper {
|
2020-08-14 19:35:00 +03:00
|
|
|
|
overflow-x: auto;
|
2020-12-24 19:22:21 +03:00
|
|
|
|
margin-bottom: 1.5rem;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2020-10-27 17:08:04 +03:00
|
|
|
|
> table {
|
2020-12-24 14:37:33 +03:00
|
|
|
|
min-width: 100%;
|
2020-06-24 15:08:38 +03:00
|
|
|
|
overflow-x: auto;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
border-spacing: 0;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2020-08-14 19:35:00 +03:00
|
|
|
|
thead {
|
|
|
|
|
border-bottom: solid 2px rgba(210, 215, 217, 0.75);
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-08-14 19:35:00 +03:00
|
|
|
|
th {
|
|
|
|
|
@extend %table-cell;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-11 12:52:38 +03:00
|
|
|
|
|
2020-08-14 19:35:00 +03:00
|
|
|
|
tbody {
|
|
|
|
|
tr {
|
2021-01-27 15:06:31 +03:00
|
|
|
|
border-bottom: 1px solid var(--tb-border-color);
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-08-14 19:35:00 +03:00
|
|
|
|
&:nth-child(2n) {
|
|
|
|
|
background-color: var(--tb-even-bg);
|
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-08-14 19:35:00 +03:00
|
|
|
|
&:nth-child(2n + 1) {
|
|
|
|
|
background-color: var(--tb-odd-bg);
|
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-08-14 19:35:00 +03:00
|
|
|
|
td {
|
|
|
|
|
@extend %table-cell;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
} // tbody
|
|
|
|
|
}// table
|
2020-08-14 19:35:00 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
/* --- post --- */
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-12-03 11:36:40 +03:00
|
|
|
|
.post {
|
|
|
|
|
h1 {
|
|
|
|
|
margin-top: 3rem;
|
2021-12-05 18:44:04 +03:00
|
|
|
|
margin-bottom: 1.5rem;
|
2021-12-03 11:36:40 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
&.img-link {
|
|
|
|
|
@extend %no-cursor;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 19:29:25 +03:00
|
|
|
|
// created by `_includes/img-extra.html`
|
|
|
|
|
&.popup {
|
2021-12-03 11:36:40 +03:00
|
|
|
|
cursor: zoom-in;
|
|
|
|
|
|
|
|
|
|
> img[data-src]:not(.normal):not(.left):not(.right) {
|
|
|
|
|
@include align-center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
code {
|
|
|
|
|
@extend %link-hover;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} // a
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 14:26:11 +03:00
|
|
|
|
.pageviews .fa-spinner {
|
|
|
|
|
font-size: 80%;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
|
.post-meta {
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
word-spacing: 1px;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
a {
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
|
margin-right: 2px;
|
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
&:hover {
|
|
|
|
|
@extend %link-hover;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-04 01:56:33 +03:00
|
|
|
|
|
|
|
|
|
em {
|
|
|
|
|
@extend %normal-font-style;
|
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-content {
|
2021-04-12 14:45:01 +03:00
|
|
|
|
font-size: 1.08rem;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
line-height: 1.8;
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
word-wrap: break-word;
|
2020-10-07 07:24:25 +03:00
|
|
|
|
|
|
|
|
|
a {
|
2021-04-16 08:04:48 +03:00
|
|
|
|
&:not(.img-link) {
|
2020-10-07 07:24:25 +03:00
|
|
|
|
@extend %link-underline;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-10-07 07:24:25 +03:00
|
|
|
|
&:hover {
|
|
|
|
|
@extend %link-hover;
|
2020-10-06 15:15:19 +03:00
|
|
|
|
}
|
2020-09-02 13:25:57 +03:00
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
2021-12-03 11:36:40 +03:00
|
|
|
|
&.img-link + em {
|
|
|
|
|
display: block;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-size: 80%;
|
|
|
|
|
padding: 0;
|
|
|
|
|
color: #6d6c6c;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
2021-04-21 18:17:34 +03:00
|
|
|
|
|
2021-12-03 11:36:40 +03:00
|
|
|
|
}
|
2021-04-21 18:17:34 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
ul {
|
|
|
|
|
// attribute 'hide-bullet' was added by liquid
|
|
|
|
|
.task-list-item[hide-bullet] {
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
|
|
|
|
|
> i { // checkbox icon
|
|
|
|
|
margin: 0 0.4rem 0.2rem -1.4rem;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
color: var(--checkbox-color);
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
&.checked {
|
|
|
|
|
color: var(--checkbox-checked-color);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type=checkbox] {
|
|
|
|
|
margin: 0 0.5rem 0.2rem -1.3rem;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // ul
|
|
|
|
|
|
|
|
|
|
> ol,
|
|
|
|
|
> ul {
|
|
|
|
|
padding-left: 2rem;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
ol,
|
|
|
|
|
ul { // sub list
|
|
|
|
|
padding-left: 2rem;
|
|
|
|
|
margin-top: 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> ol {
|
|
|
|
|
li {
|
|
|
|
|
padding-left: 0.25em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dl > dd {
|
|
|
|
|
margin-left: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // .post-content
|
|
|
|
|
|
|
|
|
|
.tag:hover {
|
|
|
|
|
@extend %tag-hover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-tag {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
min-width: 2rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background: var(--tag-bg);
|
|
|
|
|
border-radius: 0.3rem;
|
|
|
|
|
padding: 0 0.4rem;
|
|
|
|
|
color: inherit;
|
|
|
|
|
line-height: 1.3rem;
|
|
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
|
margin-right: 0.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
@extend %tag-hover;
|
|
|
|
|
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: #d2603a;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* --- buttons --- */
|
|
|
|
|
.btn-lang {
|
|
|
|
|
border: 1px solid !important;
|
|
|
|
|
padding: 1px 3px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
color: var(--link-color);
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
&:focus {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* --- Effects classes --- */
|
|
|
|
|
|
|
|
|
|
.loaded {
|
|
|
|
|
display: block !important;
|
|
|
|
|
|
|
|
|
|
@at-root .d-flex#{&} {
|
|
|
|
|
display: flex !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unloaded {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.visible {
|
|
|
|
|
visibility: visible !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
|
visibility: hidden !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flex-grow-1 {
|
|
|
|
|
-ms-flex-positive: 1 !important;
|
|
|
|
|
flex-grow: 1 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-box-shadow {
|
|
|
|
|
box-shadow: 0 0 8px 0 var(--btn-box-shadow) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.no-text-decoration {
|
|
|
|
|
@include no-text-decoration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tooltip-inner { /* Overrided BS4 Tooltip */
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
max-width: 220px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.disabled {
|
|
|
|
|
color: rgb(206, 196, 196);
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hide-border-bottom {
|
|
|
|
|
border-bottom: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-focus {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
border-color: var(--input-focus-border-color) !important;
|
|
|
|
|
background: center !important;
|
|
|
|
|
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-21 18:18:51 +03:00
|
|
|
|
/* --- Overriding --- */
|
2021-04-21 18:17:34 +03:00
|
|
|
|
|
2021-04-21 18:18:51 +03:00
|
|
|
|
// magnific-popup
|
2021-04-21 18:17:34 +03:00
|
|
|
|
figure .mfp-title {
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding-right: 0;
|
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-21 18:18:51 +03:00
|
|
|
|
// mermaid
|
|
|
|
|
.mermaid {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
/* --- sidebar layout --- */
|
|
|
|
|
|
|
|
|
|
$sidebar-display: "sidebar-display";
|
|
|
|
|
|
|
|
|
|
#sidebar {
|
|
|
|
|
@include pl-pr(0);
|
|
|
|
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow-y: auto;
|
2021-07-04 16:01:11 +03:00
|
|
|
|
width: $sidebar-width;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
z-index: 99;
|
|
|
|
|
background: var(--sidebar-bg);
|
|
|
|
|
|
2021-04-02 17:57:06 +03:00
|
|
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
|
|
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
|
|
|
scrollbar-width: none; /* Firefox */
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
a {
|
2021-09-21 17:37:28 +03:00
|
|
|
|
@extend %sidebar-links;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
@include no-text-decoration;
|
|
|
|
|
|
2021-09-21 17:37:28 +03:00
|
|
|
|
color: var(--sidebar-active-color) !important;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#avatar {
|
|
|
|
|
> a {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 6rem;
|
|
|
|
|
height: 6rem;
|
|
|
|
|
border-radius: 50%;
|
2021-09-21 13:00:29 +03:00
|
|
|
|
border: 2px solid rgba(222, 222, 222, 0.7);
|
2021-01-27 15:06:31 +03:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
transform: translateZ(0); // fixed the zoom in Safari
|
|
|
|
|
-webkit-transition: border-color 0.35s ease-in-out;
|
|
|
|
|
-moz-transition: border-color 0.35s ease-in-out;
|
|
|
|
|
transition: border-color 0.35s ease-in-out;
|
2021-09-24 10:32:23 +03:00
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
border-color: white;
|
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
-webkit-transition: transform 0.5s;
|
|
|
|
|
-moz-transition: transform 0.5s;
|
|
|
|
|
transition: transform 0.5s;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
-ms-transform: scale(1.2);
|
|
|
|
|
-moz-transform: scale(1.2);
|
|
|
|
|
-webkit-transform: scale(1.2);
|
|
|
|
|
transform: scale(1.2);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} // #avatar
|
|
|
|
|
|
|
|
|
|
.site-title {
|
|
|
|
|
a {
|
2021-09-21 13:00:29 +03:00
|
|
|
|
@extend %clickable-transition;
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
font-weight: 900;
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
letter-spacing: 0.5px;
|
2021-09-21 13:00:29 +03:00
|
|
|
|
color: rgba(134, 133, 133, 99%);
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-subtitle {
|
|
|
|
|
font-size: 95%;
|
2021-09-21 13:00:29 +03:00
|
|
|
|
color: var(--sidebar-muted-color);
|
2021-01-27 15:06:31 +03:00
|
|
|
|
line-height: 1.2rem;
|
|
|
|
|
word-spacing: 1px;
|
|
|
|
|
margin: 0.5rem 1.5rem 0.5rem 1.5rem;
|
|
|
|
|
min-height: 3rem; // avoid vertical shifting in multi-line words
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
letter-spacing: 1px;
|
|
|
|
|
display: table-cell;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-item {
|
|
|
|
|
text-align: center;
|
|
|
|
|
display: table;
|
|
|
|
|
height: $tab-height;
|
2021-09-21 13:00:29 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
&.active {
|
|
|
|
|
.nav-link {
|
2021-09-21 13:00:29 +03:00
|
|
|
|
color: var(--sidebar-active-color);
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-21 13:00:29 +03:00
|
|
|
|
|
|
|
|
|
&:not(.active) > a {
|
|
|
|
|
@extend %clickable-transition;
|
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
height: $tab-height * $tab-count;
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
a {
|
|
|
|
|
position: relative;
|
|
|
|
|
left: $cursor-width / 2;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::after { // the cursor
|
|
|
|
|
display: table;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
content: "";
|
|
|
|
|
position: relative;
|
|
|
|
|
right: 1px;
|
|
|
|
|
width: $cursor-width;
|
|
|
|
|
height: $tab-cursor-height;
|
|
|
|
|
border-radius: 1px;
|
|
|
|
|
background-color: var(--nav-cursor-color);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} // li
|
|
|
|
|
|
|
|
|
|
@mixin fix-cursor($top) {
|
|
|
|
|
top: $top;
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@for $i from 1 through $tab-count {
|
|
|
|
|
$offset: $tab-count - $i;
|
2021-05-26 20:05:01 +03:00
|
|
|
|
$top: -$offset * $tab-height + ($tab-height - $tab-cursor-height) / 2;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
|
|
|
|
@if $i < $tab-count {
|
|
|
|
|
> li.active:nth-child(#{$i}),
|
|
|
|
|
> li.nav-item:nth-child(#{$i}):hover {
|
2021-05-26 20:05:01 +03:00
|
|
|
|
~ li:last-child::after {
|
2021-01-27 15:06:31 +03:00
|
|
|
|
@include fix-cursor($top);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} @else {
|
|
|
|
|
> li.active:nth-child(#{$i}):last-child::after,
|
|
|
|
|
> li.nav-item:nth-child(#{$i}):last-child:hover::after {
|
|
|
|
|
@include fix-cursor($top);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // @for
|
|
|
|
|
|
|
|
|
|
} // ul
|
|
|
|
|
|
|
|
|
|
.sidebar-bottom {
|
|
|
|
|
margin-bottom: 2.1rem;
|
|
|
|
|
|
|
|
|
|
@include ml-mr(auto);
|
|
|
|
|
@include pl-pr(1rem);
|
|
|
|
|
|
|
|
|
|
%icon {
|
|
|
|
|
width: 2.4rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
@extend %icon;
|
2021-09-21 13:00:29 +03:00
|
|
|
|
@extend %clickable-transition;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-21 17:37:28 +03:00
|
|
|
|
i {
|
2021-12-07 13:17:20 +03:00
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
line-height: 1.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mode-toggle {
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
margin-bottom: 1px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
|
|
@extend %icon;
|
|
|
|
|
@extend %sidebar-links;
|
|
|
|
|
|
|
|
|
|
> i {
|
|
|
|
|
@extend %clickable-transition;
|
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
2021-12-07 13:17:20 +03:00
|
|
|
|
&:hover > i {
|
|
|
|
|
color: var(--sidebar-active-color);
|
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-border {
|
2021-11-02 12:54:36 +03:00
|
|
|
|
@extend %no-cursor;
|
|
|
|
|
|
2021-09-21 13:00:29 +03:00
|
|
|
|
background-color: var(--sidebar-muted-color);
|
2021-01-27 15:06:31 +03:00
|
|
|
|
content: "";
|
|
|
|
|
width: 3px;
|
|
|
|
|
height: 3px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // .sidebar-bottom
|
|
|
|
|
|
|
|
|
|
} // #sidebar
|
|
|
|
|
|
|
|
|
|
@media (hover: hover) {
|
|
|
|
|
#sidebar ul > li:last-child::after {
|
|
|
|
|
-webkit-transition: top 0.5s ease;
|
|
|
|
|
-moz-transition: top 0.5s ease;
|
|
|
|
|
-o-transition: top 0.5s ease;
|
|
|
|
|
transition: top 0.5s ease;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.profile-wrapper {
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#search-result-wrapper {
|
|
|
|
|
display: none;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: auto;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
.post-content {
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* --- top-bar --- */
|
|
|
|
|
|
|
|
|
|
#topbar-wrapper {
|
|
|
|
|
height: $topbar-height;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
2021-07-04 16:01:11 +03:00
|
|
|
|
left: $sidebar-width; /* same as sidebar width */
|
2021-01-27 15:06:31 +03:00
|
|
|
|
right: 0;
|
|
|
|
|
transition: top 0.2s ease-in-out;
|
|
|
|
|
z-index: 50;
|
|
|
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.07);
|
|
|
|
|
background-color: var(--topbar-wrapper-bg);
|
2022-01-09 14:09:29 +03:00
|
|
|
|
|
|
|
|
|
[topbar-visible=false] & {
|
|
|
|
|
top: -$topbar-height; /* same as topbar height. */
|
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#topbar {
|
|
|
|
|
i { // icons
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#breadcrumb {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
color: gray;
|
|
|
|
|
padding-left: 0.5rem;
|
|
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
@extend %link-hover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
|
&::after {
|
|
|
|
|
content: "›";
|
|
|
|
|
padding: 0 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} // #topbar
|
|
|
|
|
|
|
|
|
|
#sidebar-trigger,
|
|
|
|
|
#search-trigger {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#search-wrapper {
|
|
|
|
|
display: flex;
|
2021-07-20 20:01:09 +03:00
|
|
|
|
width: 85%;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
border-radius: 1rem;
|
2021-09-21 13:00:29 +03:00
|
|
|
|
border: 1px solid var(--search-wrapper-border-color);
|
2021-01-27 15:06:31 +03:00
|
|
|
|
background: var(--search-wrapper-bg);
|
|
|
|
|
padding: 0 0.5rem;
|
2021-09-17 11:58:32 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
i {
|
|
|
|
|
z-index: 2;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
color: var(--search-icon-color);
|
|
|
|
|
}
|
2021-09-17 11:58:32 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
.fa-times-circle { /* button 'clean up' */
|
2021-09-17 11:58:32 +03:00
|
|
|
|
@extend %cursor-pointer;
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#search-cancel { /* 'Cancel' link */
|
|
|
|
|
color: var(--link-color);
|
|
|
|
|
margin-left: 1rem;
|
|
|
|
|
display: none;
|
2021-09-17 11:58:32 +03:00
|
|
|
|
|
|
|
|
|
@extend %cursor-pointer;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#search-input {
|
|
|
|
|
background: center;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
padding: 0.18rem 0.3rem;
|
|
|
|
|
color: var(--text-color);
|
|
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
background: center;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
&.form-control {
|
|
|
|
|
&::-webkit-input-placeholder { @include input-placeholder; }
|
|
|
|
|
&::-moz-placeholder { @include input-placeholder; }
|
|
|
|
|
&:-ms-input-placeholder { @include input-placeholder; }
|
|
|
|
|
&::placeholder { @include input-placeholder; }
|
2020-12-24 14:37:33 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
2020-12-24 14:37:33 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
#search-hints {
|
2021-12-01 16:49:51 +03:00
|
|
|
|
padding: 0 1rem;
|
|
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
}
|
2020-12-14 10:01:05 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
.post-tag {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
line-height: 1rem;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
background: var(--search-tag-bg);
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 0.5rem;
|
2021-12-01 16:49:51 +03:00
|
|
|
|
margin: 0 1.25rem 1rem 0;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
&::before {
|
|
|
|
|
content: "#";
|
|
|
|
|
color: var(--text-muted-color);
|
|
|
|
|
padding-right: 0.2rem;
|
2020-12-15 10:20:03 +03:00
|
|
|
|
}
|
2021-12-01 16:49:51 +03:00
|
|
|
|
|
|
|
|
|
@extend %link-color;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-13 19:24:33 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
#search-results {
|
|
|
|
|
padding-bottom: 6rem;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
a {
|
|
|
|
|
&:hover {
|
|
|
|
|
@extend %link-hover;
|
2020-12-12 19:35:45 +03:00
|
|
|
|
}
|
2020-12-13 19:24:33 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
@extend %link-color;
|
|
|
|
|
@extend %no-bottom-border;
|
|
|
|
|
@extend %heading;
|
2020-12-12 20:45:52 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
font-size: 1.4rem;
|
|
|
|
|
line-height: 2.5rem;
|
|
|
|
|
}
|
2020-12-24 14:37:33 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
> div {
|
2021-02-05 17:08:04 +03:00
|
|
|
|
width: 100%;
|
2020-12-24 14:37:33 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
&:not(:last-child) {
|
|
|
|
|
margin-bottom: 1rem;
|
2020-12-24 14:37:33 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
i { // icons
|
|
|
|
|
color: #818182;
|
|
|
|
|
margin-right: 0.15rem;
|
|
|
|
|
font-size: 80%;
|
2020-12-24 14:37:33 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
> p {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
}
|
2020-12-24 14:37:33 +03:00
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
} // #search-results
|
2020-12-24 14:37:33 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
#topbar-title {
|
|
|
|
|
display: none;
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
color: var(--topbar-text-color);
|
2019-11-28 19:04:01 +03:00
|
|
|
|
text-align: center;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
width: 70%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
word-break: keep-all;
|
|
|
|
|
white-space: nowrap;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-01 16:49:51 +03:00
|
|
|
|
#core-wrapper {
|
2021-12-02 16:32:26 +03:00
|
|
|
|
min-height: calc(100vh - #{$topbar-height} - #{$footer-height} - #{$bottom-min-height}) !important;
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
.categories,
|
|
|
|
|
#tags,
|
|
|
|
|
#archives {
|
|
|
|
|
a:not(:hover) {
|
|
|
|
|
@extend %no-bottom-border;
|
|
|
|
|
}
|
2020-02-28 19:16:47 +03:00
|
|
|
|
}
|
2020-02-08 21:59:16 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
#mask {
|
|
|
|
|
display: none;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
z-index: 1;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
@at-root [#{$sidebar-display}] & {
|
|
|
|
|
display: block !important;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2019-12-31 18:17:27 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
/* --- main wrapper --- */
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
#main-wrapper {
|
|
|
|
|
background-color: var(--main-wrapper-bg);
|
|
|
|
|
position: relative;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
padding-bottom: $footer-height;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
@include pl-pr(0);
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-01 16:49:51 +03:00
|
|
|
|
#main {
|
|
|
|
|
.row:first-child {
|
|
|
|
|
> div {
|
|
|
|
|
&:nth-child(1),
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
|
margin-top: $topbar-height; /* same as the height of topbar */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
|
/* 3rem for topbar, 6rem for footer */
|
|
|
|
|
min-height: calc(100vh - #{$topbar-height} - #{$footer-height} - #{$bottom-min-height});
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-12-13 12:34:48 +03:00
|
|
|
|
div.row:first-of-type:last-of-type { // alone
|
2021-12-01 16:49:51 +03:00
|
|
|
|
margin-bottom: 4rem;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
#topbar-wrapper.row,
|
|
|
|
|
#main > .row,
|
|
|
|
|
#search-result-wrapper > .row {
|
|
|
|
|
@include ml-mr(0);
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
/* --- button back-to-top --- */
|
2019-11-15 19:01:33 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
#back-to-top {
|
2021-09-23 13:58:18 +03:00
|
|
|
|
$size: 2.7em;
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
display: none;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: fixed;
|
|
|
|
|
background: var(--button-bg);
|
|
|
|
|
color: var(--btn-backtotop-color);
|
2021-09-23 13:58:18 +03:00
|
|
|
|
padding: 0;
|
|
|
|
|
width: $size;
|
|
|
|
|
height: $size;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
border-radius: 50%;
|
|
|
|
|
border: 1px solid var(--btn-backtotop-border-color);
|
2021-09-23 16:40:31 +03:00
|
|
|
|
transition: transform 0.2s ease-out;
|
|
|
|
|
-webkit-transition: transform 0.2s ease-out;
|
2021-09-23 13:58:18 +03:00
|
|
|
|
|
|
|
|
|
i {
|
|
|
|
|
line-height: $size;
|
|
|
|
|
position: relative;
|
|
|
|
|
bottom: 2px;
|
|
|
|
|
}
|
2019-11-15 19:01:33 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
#back-to-top:hover {
|
|
|
|
|
transform: translate3d(0, -5px, 0);
|
|
|
|
|
-webkit-transform: translate3d(0, -5px, 0);
|
2019-12-31 18:17:27 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-04-05 12:50:35 +03:00
|
|
|
|
/*
|
|
|
|
|
Responsive Design:
|
|
|
|
|
|
|
|
|
|
{sidebar, content, panel} >= 1120px screen width
|
|
|
|
|
{sidebar, content} >= 850px screen width
|
|
|
|
|
{content} <= 849px screen width
|
|
|
|
|
|
|
|
|
|
*/
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
|
|
|
|
@media all and (max-width: 576px) {
|
|
|
|
|
|
2021-07-04 16:01:11 +03:00
|
|
|
|
$footer-height: $footer-height-mobile; // overwrite
|
2020-02-27 12:36:59 +03:00
|
|
|
|
|
2020-08-19 16:18:14 +03:00
|
|
|
|
#main > div.row:first-child > div:first-child {
|
2020-02-27 12:36:59 +03:00
|
|
|
|
min-height: calc(100vh - #{$topbar-height} - #{$footer-height});
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-01 16:49:51 +03:00
|
|
|
|
#core-wrapper {
|
|
|
|
|
min-height: calc(100vh - #{$topbar-height} - #{$footer-height} - #{$bottom-min-height}) !important;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
h1 {
|
|
|
|
|
margin-top: 2.2rem;
|
2021-12-05 21:40:51 +03:00
|
|
|
|
font-size: 1.75rem;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-19 16:18:14 +03:00
|
|
|
|
#avatar > a {
|
2019-11-12 11:18:54 +03:00
|
|
|
|
width: 5rem;
|
|
|
|
|
height: 5rem;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-31 21:31:13 +03:00
|
|
|
|
.site-subtitle {
|
2020-02-25 12:56:03 +03:00
|
|
|
|
@include ml-mr(1.8rem);
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-16 21:55:16 +03:00
|
|
|
|
#main-wrapper {
|
|
|
|
|
padding-bottom: $footer-height;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
|
footer {
|
2020-02-16 21:55:16 +03:00
|
|
|
|
height: $footer-height;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-10-27 17:08:04 +03:00
|
|
|
|
> div.d-flex {
|
2020-02-25 21:20:41 +03:00
|
|
|
|
width: 100%;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
padding: 1.5rem 0;
|
2020-10-27 17:08:04 +03:00
|
|
|
|
margin-bottom: 0.3rem;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
flex-wrap: wrap;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
-ms-flex-pack: distribute !important;
|
|
|
|
|
justify-content: space-around !important;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
.footer-left,
|
|
|
|
|
.footer-right {
|
2020-02-25 12:56:03 +03:00
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2020-02-16 21:55:16 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2020-02-16 21:55:16 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-04-05 12:50:35 +03:00
|
|
|
|
/* hide sidebar and panel */
|
|
|
|
|
@media all and (max-width: 849px) {
|
2022-01-09 14:09:29 +03:00
|
|
|
|
@mixin slide($append: null) {
|
|
|
|
|
$basic: transform 0.4s ease;
|
|
|
|
|
@if $append {
|
|
|
|
|
-webkit-transition: $basic, $append;
|
|
|
|
|
transition: $basic, $append;
|
|
|
|
|
} @else {
|
|
|
|
|
-webkit-transition: $basic;
|
|
|
|
|
transition: $basic;
|
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
html,
|
|
|
|
|
body {
|
2020-04-16 19:26:58 +03:00
|
|
|
|
overflow-x: hidden;
|
2019-11-22 18:56:04 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-16 19:26:58 +03:00
|
|
|
|
[#{$sidebar-display}] {
|
|
|
|
|
#sidebar {
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2020-04-16 19:26:58 +03:00
|
|
|
|
#topbar-wrapper,
|
|
|
|
|
#main-wrapper {
|
2021-07-04 16:01:11 +03:00
|
|
|
|
transform: translateX(#{$sidebar-width});
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#sidebar {
|
2022-01-09 14:09:29 +03:00
|
|
|
|
@include slide;
|
2020-04-16 19:26:58 +03:00
|
|
|
|
|
2021-07-04 16:01:11 +03:00
|
|
|
|
transform: translateX(-#{$sidebar-width}); // hide
|
|
|
|
|
-webkit-transform: translateX(-#{$sidebar-width});
|
2020-04-16 19:26:58 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
.cursor {
|
|
|
|
|
-webkit-transition: none;
|
|
|
|
|
-moz-transition: none;
|
|
|
|
|
transition: none;
|
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#main-wrapper {
|
2022-01-09 14:09:29 +03:00
|
|
|
|
@include slide;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
2020-04-16 19:26:58 +03:00
|
|
|
|
padding-top: $topbar-height;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#search-result-wrapper {
|
|
|
|
|
width: 100%;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#breadcrumb,
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#search-wrapper {
|
2019-09-30 15:38:41 +03:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#topbar-wrapper {
|
2022-01-09 14:09:29 +03:00
|
|
|
|
@include slide(top 0.2s ease);
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-19 16:18:14 +03:00
|
|
|
|
#main > div.row:first-child > div:nth-child(1),
|
|
|
|
|
#main > div.row:first-child > div:nth-child(2) {
|
2019-09-30 15:38:41 +03:00
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#topbar-title,
|
|
|
|
|
#sidebar-trigger,
|
|
|
|
|
#search-trigger {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
#search-wrapper {
|
2020-08-19 16:18:14 +03:00
|
|
|
|
&.loaded ~ a {
|
2020-02-25 12:56:03 +03:00
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
.fa-times-circle {
|
|
|
|
|
right: 5.2rem;
|
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#search-input {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
width: 95%;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#search-result-wrapper .post-content {
|
2019-09-30 15:38:41 +03:00
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#tags {
|
2021-01-27 15:06:31 +03:00
|
|
|
|
-webkit-box-pack: center !important;
|
|
|
|
|
-ms-flex-pack: center !important;
|
|
|
|
|
justify-content: center !important;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-01 16:49:51 +03:00
|
|
|
|
h1.dynamic-title {
|
2021-01-27 15:06:31 +03:00
|
|
|
|
display: none;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
~ .post-content {
|
|
|
|
|
margin-top: 3rem;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-05 12:50:35 +03:00
|
|
|
|
} // max-width: 849px
|
2020-02-08 21:59:16 +03:00
|
|
|
|
|
2022-01-09 14:09:29 +03:00
|
|
|
|
@media all and (max-width: 849px) and (orientation: portrait) {
|
|
|
|
|
[topbar-visible=false] #topbar-wrapper {
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-05 12:50:35 +03:00
|
|
|
|
/* Phone & Pad */
|
2020-02-13 23:52:42 +03:00
|
|
|
|
@media all and (min-width: 577px) and (max-width: 1199px) {
|
2021-01-27 15:06:31 +03:00
|
|
|
|
footer > .d-flex > div {
|
2020-02-13 23:52:42 +03:00
|
|
|
|
width: 312px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-05 12:50:35 +03:00
|
|
|
|
/* Sidebar is visible */
|
|
|
|
|
@media all and (min-width: 850px) {
|
2020-04-16 19:26:58 +03:00
|
|
|
|
/* Solved jumping scrollbar */
|
|
|
|
|
html {
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#main-wrapper {
|
2021-07-04 16:01:11 +03:00
|
|
|
|
margin-left: $sidebar-width;
|
2020-04-16 19:26:58 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
.profile-wrapper {
|
2020-04-16 19:26:58 +03:00
|
|
|
|
margin-top: 3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#search-wrapper {
|
|
|
|
|
width: 22%;
|
|
|
|
|
min-width: 150px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-06 21:37:43 +03:00
|
|
|
|
#search-hints {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-04 18:44:48 +03:00
|
|
|
|
#search-result-wrapper {
|
|
|
|
|
margin-top: 3rem;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-24 14:37:33 +03:00
|
|
|
|
div.post-content .table-wrapper > table {
|
|
|
|
|
min-width: 70%;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-16 19:26:58 +03:00
|
|
|
|
/* button 'back-to-Top' position */
|
|
|
|
|
#back-to-top {
|
|
|
|
|
bottom: 5.5rem;
|
|
|
|
|
right: 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#topbar-title {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-19 16:18:14 +03:00
|
|
|
|
footer > div.d-flex {
|
2020-04-16 19:26:58 +03:00
|
|
|
|
width: 92%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-05 12:50:35 +03:00
|
|
|
|
/* Pad horizontal */
|
|
|
|
|
@media all and (min-width: 992px) and (max-width: 1199px) {
|
|
|
|
|
#main .col-lg-11 {
|
2020-04-16 19:26:58 +03:00
|
|
|
|
-webkit-box-flex: 0;
|
|
|
|
|
-ms-flex: 0 0 96%;
|
|
|
|
|
flex: 0 0 96%;
|
|
|
|
|
max-width: 96%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-05 12:50:35 +03:00
|
|
|
|
/* Compact icons in sidebar & panel hidden */
|
|
|
|
|
@media all and (min-width: 850px) and (max-width: 1199px) {
|
2019-09-30 15:38:41 +03:00
|
|
|
|
#sidebar {
|
2020-02-27 12:36:59 +03:00
|
|
|
|
width: $sidebar-width-small;
|
2021-04-05 12:50:35 +03:00
|
|
|
|
|
|
|
|
|
.site-subtitle {
|
|
|
|
|
margin-left: 1rem;
|
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-20 19:23:15 +03:00
|
|
|
|
.sidebar-bottom {
|
2021-01-27 15:06:31 +03:00
|
|
|
|
a,
|
|
|
|
|
span {
|
2020-12-21 17:17:11 +03:00
|
|
|
|
width: 2rem;
|
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-02-20 19:23:15 +03:00
|
|
|
|
.icon-border {
|
2020-12-21 17:17:11 +03:00
|
|
|
|
left: -3px;
|
2020-02-20 19:23:15 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#topbar-wrapper {
|
2019-09-30 15:38:41 +03:00
|
|
|
|
left: 210px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-19 16:18:14 +03:00
|
|
|
|
#search-results > div {
|
2020-05-03 19:56:56 +03:00
|
|
|
|
max-width: 700px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-31 21:31:13 +03:00
|
|
|
|
.site-title {
|
2019-09-30 15:38:41 +03:00
|
|
|
|
font-size: 1.3rem;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
margin-left: 0 !important;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-31 21:31:13 +03:00
|
|
|
|
.site-subtitle {
|
2020-02-25 12:56:03 +03:00
|
|
|
|
@include ml-mr(1rem);
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
|
|
|
|
font-size: 90%;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#main-wrapper {
|
2019-09-30 15:38:41 +03:00
|
|
|
|
margin-left: 210px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#breadcrumb {
|
|
|
|
|
width: 65%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
word-break: keep-all;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-05 12:50:35 +03:00
|
|
|
|
/* panel hidden */
|
2019-11-27 20:59:01 +03:00
|
|
|
|
@media all and (max-width: 1199px) {
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#panel-wrapper {
|
2019-10-29 09:09:58 +03:00
|
|
|
|
display: none;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#topbar {
|
2019-09-30 15:38:41 +03:00
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2019-11-27 20:59:01 +03:00
|
|
|
|
|
2020-08-19 16:18:14 +03:00
|
|
|
|
#main > div.row {
|
2021-01-27 15:06:31 +03:00
|
|
|
|
-webkit-box-pack: center !important;
|
|
|
|
|
-ms-flex-pack: center !important;
|
|
|
|
|
justify-content: center !important;
|
2019-11-27 20:59:01 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 15:06:31 +03:00
|
|
|
|
/* --- desktop mode, both sidebar and panel are visible --- */
|
2019-11-25 15:56:50 +03:00
|
|
|
|
|
2019-11-27 20:59:01 +03:00
|
|
|
|
@media all and (min-width: 1200px) {
|
2020-08-19 16:18:14 +03:00
|
|
|
|
#main > div.row > div.col-xl-8 {
|
2019-09-30 15:38:41 +03:00
|
|
|
|
-webkit-box-flex: 0;
|
|
|
|
|
-ms-flex: 0 0 75%;
|
|
|
|
|
flex: 0 0 75%;
|
2019-11-27 20:59:01 +03:00
|
|
|
|
max-width: 75%;
|
2019-11-19 18:32:57 +03:00
|
|
|
|
padding-left: 3%;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#topbar {
|
|
|
|
|
padding: 0;
|
|
|
|
|
max-width: 1070px;
|
2019-11-25 15:56:50 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#panel-wrapper {
|
2020-02-27 12:36:59 +03:00
|
|
|
|
max-width: $panel-max-width;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#back-to-top {
|
2020-02-26 16:37:27 +03:00
|
|
|
|
bottom: 6.5rem;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
right: 4.3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#search-input {
|
2020-12-18 15:54:18 +03:00
|
|
|
|
-webkit-transition: all 0.3s ease-in-out;
|
|
|
|
|
transition: all 0.3s ease-in-out;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-19 16:18:14 +03:00
|
|
|
|
#search-results > div {
|
2021-02-05 17:08:04 +03:00
|
|
|
|
width: 46%;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
&:nth-child(odd) {
|
|
|
|
|
margin-right: 1.5rem;
|
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
&:nth-child(even) {
|
|
|
|
|
margin-left: 1.5rem;
|
|
|
|
|
}
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
&:last-child:nth-child(odd) {
|
|
|
|
|
position: relative;
|
|
|
|
|
right: 24.3%;
|
|
|
|
|
}
|
2019-12-31 18:17:27 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-12 14:45:01 +03:00
|
|
|
|
.post-content {
|
2020-02-28 19:16:47 +03:00
|
|
|
|
font-size: 1.03rem;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-19 16:18:14 +03:00
|
|
|
|
footer > div.d-felx {
|
2020-02-21 00:23:43 +03:00
|
|
|
|
width: 85%;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-27 20:59:01 +03:00
|
|
|
|
@media all and (min-width: 1400px) {
|
2020-08-19 16:18:14 +03:00
|
|
|
|
#main > div.row {
|
2020-02-27 12:36:59 +03:00
|
|
|
|
padding-left: calc((100% - #{$main-content-max-width}) / 2);
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-10-27 17:08:04 +03:00
|
|
|
|
> div.col-xl-8 {
|
2020-02-25 12:56:03 +03:00
|
|
|
|
max-width: 850px;
|
|
|
|
|
}
|
2019-11-19 18:32:57 +03:00
|
|
|
|
}
|
2019-11-28 17:32:33 +03:00
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#search-result-wrapper {
|
|
|
|
|
padding-right: 2rem;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-10-27 17:08:04 +03:00
|
|
|
|
> div {
|
2020-02-25 12:56:03 +03:00
|
|
|
|
max-width: 1110px;
|
|
|
|
|
}
|
2019-12-31 18:17:27 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#search-wrapper .fa-times-circle {
|
|
|
|
|
right: 2.6rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media all and (min-width: 1400px) and (max-width: 1650px) {
|
|
|
|
|
#topbar {
|
|
|
|
|
padding-right: 2rem;
|
|
|
|
|
}
|
2019-11-27 20:59:01 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media all and (min-width: 1650px) {
|
|
|
|
|
#breadcrumb {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-19 16:18:14 +03:00
|
|
|
|
#main > div.row > div.col-xl-8 {
|
2019-11-27 20:59:01 +03:00
|
|
|
|
padding-left: 0;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-10-27 17:08:04 +03:00
|
|
|
|
> div:first-child {
|
|
|
|
|
padding-left: 0.55rem !important;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
padding-right: 1.9rem !important;
|
|
|
|
|
}
|
2019-11-27 20:59:01 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#main-wrapper {
|
2020-02-27 12:36:59 +03:00
|
|
|
|
margin-left: $sidebar-width-large;
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#panel-wrapper {
|
2020-02-27 12:36:59 +03:00
|
|
|
|
margin-left: calc((100% - #{$main-content-max-width}) / 10);
|
2019-11-11 18:02:38 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#topbar-wrapper {
|
2020-02-27 12:36:59 +03:00
|
|
|
|
left: $sidebar-width-large;
|
2019-11-11 18:02:38 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#topbar {
|
2020-02-27 12:36:59 +03:00
|
|
|
|
max-width: #{$main-content-max-width};
|
2019-11-11 18:02:38 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#search-wrapper {
|
2019-11-19 18:32:57 +03:00
|
|
|
|
margin-right: 3%;
|
2019-11-11 18:02:38 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
#sidebar {
|
|
|
|
|
width: $sidebar-width-large;
|
2019-11-11 18:02:38 +03:00
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
.profile-wrapper {
|
|
|
|
|
margin-top: 4rem;
|
|
|
|
|
margin-bottom: 1rem;
|
2019-11-11 18:02:38 +03:00
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
&.text-center {
|
2020-05-31 21:31:13 +03:00
|
|
|
|
text-align: left !important;
|
|
|
|
|
}
|
2019-11-11 18:02:38 +03:00
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
%profile-ml {
|
|
|
|
|
margin-left: 4.5rem;
|
|
|
|
|
}
|
2019-11-11 18:02:38 +03:00
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
#avatar {
|
|
|
|
|
@extend %profile-ml;
|
2019-11-11 18:02:38 +03:00
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
> a {
|
|
|
|
|
width: 6.2rem;
|
|
|
|
|
height: 6.2rem;
|
2021-10-25 22:04:15 +03:00
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
&.mx-auto {
|
|
|
|
|
margin-left: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-11 18:02:38 +03:00
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
.site-title {
|
|
|
|
|
@extend %profile-ml;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
a {
|
|
|
|
|
font-size: 1.7rem;
|
|
|
|
|
letter-spacing: 1px;
|
|
|
|
|
}
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2019-11-11 18:02:38 +03:00
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
.site-subtitle {
|
|
|
|
|
@extend %profile-ml;
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
word-spacing: 0;
|
|
|
|
|
margin-top: 0.3rem;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
|
|
|
|
} // .profile-wrapper (min-width: 1650px)
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
padding-left: 2.5rem;
|
|
|
|
|
|
|
|
|
|
> li:last-child {
|
|
|
|
|
> a {
|
|
|
|
|
position: static;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-item {
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
|
> span {
|
2021-09-21 17:37:28 +03:00
|
|
|
|
letter-spacing: 2px;
|
2020-12-21 17:17:11 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> i {
|
|
|
|
|
&.unloaded {
|
|
|
|
|
display: inline-block !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-11 18:02:38 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
.sidebar-bottom {
|
2020-12-21 17:17:11 +03:00
|
|
|
|
padding-left: 3.5rem;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
2021-09-21 17:37:28 +03:00
|
|
|
|
$icon-block-size: 2rem;
|
|
|
|
|
|
2020-12-21 17:17:11 +03:00
|
|
|
|
&.justify-content-center {
|
2021-01-27 15:06:31 +03:00
|
|
|
|
-webkit-box-pack: start !important;
|
|
|
|
|
-ms-flex-pack: start !important;
|
|
|
|
|
justify-content: flex-start !important;
|
2020-12-21 17:17:11 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-21 17:37:28 +03:00
|
|
|
|
> span,
|
2021-12-07 13:17:20 +03:00
|
|
|
|
> button.mode-toggle,
|
2021-09-21 17:37:28 +03:00
|
|
|
|
> a {
|
|
|
|
|
@include ml-mr(0.15rem);
|
2021-01-27 15:06:31 +03:00
|
|
|
|
|
2021-09-21 17:37:28 +03:00
|
|
|
|
height: $icon-block-size;
|
|
|
|
|
margin-bottom: 0.5rem; // wrap line
|
2020-02-19 19:31:28 +03:00
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
2021-09-21 17:37:28 +03:00
|
|
|
|
i {
|
|
|
|
|
background-color: var(--sidebar-btn-bg);
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
width: $icon-block-size;
|
|
|
|
|
height: $icon-block-size;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
position: relative;
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
2021-09-21 17:37:28 +03:00
|
|
|
|
&::before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translate(-50%, -50%);
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2020-02-20 20:27:28 +03:00
|
|
|
|
}
|
2020-02-16 22:06:38 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
.icon-border {
|
2021-09-21 17:37:28 +03:00
|
|
|
|
top: 0.9rem;
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
} // .sidebar-bottom
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
} // #sidebar
|
2020-12-21 17:17:11 +03:00
|
|
|
|
|
2020-08-19 16:18:14 +03:00
|
|
|
|
footer > div.d-flex {
|
2021-04-05 12:50:35 +03:00
|
|
|
|
width: 92%;
|
2020-02-21 00:23:43 +03:00
|
|
|
|
max-width: 1140px;
|
2019-11-19 18:32:57 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#search-result-wrapper {
|
2020-10-27 17:08:04 +03:00
|
|
|
|
> div {
|
2020-02-27 12:36:59 +03:00
|
|
|
|
max-width: #{$main-content-max-width};
|
2020-02-25 12:56:03 +03:00
|
|
|
|
}
|
2019-12-31 18:17:27 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
|
} // min-width: 1650px
|
2019-11-19 18:32:57 +03:00
|
|
|
|
|
|
|
|
|
@media all and (min-width: 1700px) {
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#topbar-wrapper {
|
2021-01-27 15:06:31 +03:00
|
|
|
|
/* 100% - 350px - (1920px - 350px); */
|
|
|
|
|
padding-right: calc(100% - #{$sidebar-width-large} - (1920px - #{$sidebar-width-large}));
|
2019-11-19 18:32:57 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-06 22:46:46 +03:00
|
|
|
|
#topbar {
|
2021-01-27 15:06:31 +03:00
|
|
|
|
max-width: calc(#{$main-content-max-width} + 20px);
|
2020-04-06 22:46:46 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-19 16:18:14 +03:00
|
|
|
|
#main > div.row {
|
2020-02-27 12:36:59 +03:00
|
|
|
|
padding-left: calc((100% - #{$main-content-max-width} - 2%) / 2);
|
2019-11-19 18:32:57 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#panel-wrapper {
|
2019-11-27 20:59:01 +03:00
|
|
|
|
margin-left: 3%;
|
2019-11-19 18:32:57 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer {
|
2020-02-21 00:23:43 +03:00
|
|
|
|
padding-left: 0;
|
2020-02-27 12:36:59 +03:00
|
|
|
|
padding-right: calc(100% - #{$sidebar-width-large} - 1180px);
|
2019-11-19 18:32:57 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#back-to-top {
|
|
|
|
|
right: calc(100% - 1920px + 15rem);
|
2019-09-30 15:38:41 +03:00
|
|
|
|
}
|
2019-11-11 18:02:38 +03:00
|
|
|
|
|
2019-11-27 20:59:01 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 1920px) {
|
2020-08-19 16:18:14 +03:00
|
|
|
|
#main > div.row {
|
2019-11-27 20:59:01 +03:00
|
|
|
|
padding-left: 190px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
|
#search-result-wrapper {
|
2021-02-04 18:44:48 +03:00
|
|
|
|
padding-right: calc(100% - #{$sidebar-width-large} - 1180px);
|
2019-12-31 18:17:27 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#panel-wrapper {
|
2019-11-27 20:59:01 +03:00
|
|
|
|
margin-left: 41px;
|
|
|
|
|
}
|
2019-12-31 18:17:27 +03:00
|
|
|
|
}
|