2020-07-21 10:50:35 +02:00
|
|
|
.main {
|
|
|
|
position: relative;
|
|
|
|
min-height: calc(100vh - var(--header-height) - var(--footer-height));
|
2020-11-17 11:26:27 +01:00
|
|
|
max-width: calc(var(--main-width) + var(--gap) * 2);
|
2020-09-20 08:24:41 +02:00
|
|
|
margin: auto;
|
2021-06-11 09:59:56 +02:00
|
|
|
padding: var(--gap);
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-header h1 {
|
2021-06-11 09:59:56 +02:00
|
|
|
font-size: 40px;
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination {
|
2021-06-11 09:59:56 +02:00
|
|
|
display: flex;
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination a {
|
|
|
|
color: var(--theme);
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 36px;
|
|
|
|
background: var(--primary);
|
2020-11-17 11:26:27 +01:00
|
|
|
border-radius: calc(36px / 2);
|
2021-06-11 09:59:56 +02:00
|
|
|
padding: 0 16px;
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination .next {
|
2021-06-11 09:59:56 +02:00
|
|
|
margin-inline-start: auto;
|
2020-07-24 18:33:13 +02:00
|
|
|
}
|
2020-10-02 09:50:20 +02:00
|
|
|
|
|
|
|
.social-icons {
|
2021-06-11 09:59:56 +02:00
|
|
|
padding: 12px 0;
|
2020-10-02 09:50:20 +02:00
|
|
|
}
|
|
|
|
|
2020-10-02 10:06:57 +02:00
|
|
|
.social-icons a:not(:last-of-type) {
|
2021-06-11 09:59:56 +02:00
|
|
|
margin-inline-end: 12px;
|
2020-10-02 10:06:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.social-icons a svg {
|
|
|
|
height: 26px;
|
2021-06-11 09:59:56 +02:00
|
|
|
width: 26px;
|
2020-10-19 11:17:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
2021-04-10 08:03:31 +02:00
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
|
2021-06-11 10:04:55 +02:00
|
|
|
div.highlight,
|
|
|
|
pre {
|
2021-04-10 08:03:31 +02: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 14:02:25 +01:00
|
|
|
user-select: none;
|
2021-04-10 08:03:31 +02:00
|
|
|
}
|
|
|
|
|
2021-04-16 06:30:08 +02:00
|
|
|
div.highlight:hover .copy-code,
|
|
|
|
pre:hover .copy-code {
|
2021-04-10 08:03:31 +02:00
|
|
|
display: block;
|
2020-10-19 11:17:23 +02:00
|
|
|
}
|