2022-04-09 16:31:15 +01:00
|
|
|
/* for home and other pages */
|
2020-07-21 09:50:35 +01:00
|
|
|
.main {
|
|
|
|
position: relative;
|
|
|
|
min-height: calc(100vh - var(--header-height) - var(--footer-height));
|
2020-11-17 10:26:27 +00:00
|
|
|
max-width: calc(var(--main-width) + var(--gap) * 2);
|
2020-09-20 07:24:41 +01:00
|
|
|
margin: auto;
|
2021-06-11 08:59:56 +01:00
|
|
|
padding: var(--gap);
|
2022-04-21 18:09:19 +01:00
|
|
|
padding-bottom: 0;
|
2020-07-21 09:50:35 +01:00
|
|
|
}
|
2022-04-09 16:31:15 +01:00
|
|
|
/* for post page */
|
|
|
|
.main.post {
|
|
|
|
max-width: calc(var(--post-width) + var(--gap) * 2);
|
|
|
|
}
|
2020-07-21 09:50:35 +01:00
|
|
|
|
|
|
|
.page-header h1 {
|
2021-06-11 08:59:56 +01:00
|
|
|
font-size: 40px;
|
2020-07-21 09:50:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination {
|
2021-06-11 08:59:56 +01:00
|
|
|
display: flex;
|
2020-07-21 09:50:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination a {
|
|
|
|
color: var(--theme);
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 36px;
|
|
|
|
background: var(--primary);
|
2020-11-17 10:26:27 +00:00
|
|
|
border-radius: calc(36px / 2);
|
2021-06-11 08:59:56 +01:00
|
|
|
padding: 0 16px;
|
2020-07-21 09:50:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination .next {
|
2021-06-11 08:59:56 +01:00
|
|
|
margin-inline-start: auto;
|
2020-07-24 17:33:13 +01:00
|
|
|
}
|
2020-10-02 08:50:20 +01:00
|
|
|
|
|
|
|
.social-icons {
|
2021-06-11 08:59:56 +01:00
|
|
|
padding: 12px 0;
|
2020-10-02 08:50:20 +01:00
|
|
|
}
|
|
|
|
|
2022-04-21 07:56:33 +01:00
|
|
|
.social-icons a {
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 20px;
|
|
|
|
transition: var(--link-transition);
|
|
|
|
}
|
|
|
|
|
2020-10-02 09:06:57 +01:00
|
|
|
.social-icons a:not(:last-of-type) {
|
2022-04-21 07:56:33 +01:00
|
|
|
margin-right: 12px;
|
2020-10-02 09:06:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.social-icons a svg {
|
|
|
|
height: 26px;
|
2021-06-11 08:59:56 +01:00
|
|
|
width: 26px;
|
2020-10-19 10:17:23 +01:00
|
|
|
}
|
2022-04-21 07:56:33 +01:00
|
|
|
.social-icons a:hover {
|
|
|
|
color: var(--link-hover-color);
|
|
|
|
box-shadow: var(--link-hover-underline-shadow);
|
|
|
|
}
|
2020-10-19 10:17:23 +01:00
|
|
|
|
|
|
|
code {
|
2021-04-10 07:03:31 +01:00
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
|
2021-06-11 09:04:55 +01:00
|
|
|
div.highlight,
|
|
|
|
pre {
|
2021-04-10 07:03:31 +01:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.copy-code {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
right: 4px;
|
|
|
|
color: rgba(255, 255, 255, 0.8);
|
|
|
|
background: rgba(78, 78, 78, 0.8);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
padding: 0 5px;
|
|
|
|
font-size: 14px;
|
2021-11-20 13:02:25 +00:00
|
|
|
user-select: none;
|
2021-04-10 07:03:31 +01:00
|
|
|
}
|
|
|
|
|
2021-04-16 05:30:08 +01:00
|
|
|
div.highlight:hover .copy-code,
|
|
|
|
pre:hover .copy-code {
|
2021-04-10 07:03:31 +01:00
|
|
|
display: block;
|
2020-10-19 10:17:23 +01:00
|
|
|
}
|