PaperModX/assets/css/common/main.css

206 lines
3.8 KiB
CSS
Raw Normal View History

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));
max-width: calc(var(--main-width) + var(--gap) * 2);
margin: auto;
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 {
font-size: 40px;
2020-07-21 09:50:35 +01:00
}
.pagination {
display: flex;
2020-07-21 09:50:35 +01:00
}
.pagination a {
color: var(--theme);
font-size: 13px;
line-height: 36px;
background: var(--primary);
border-radius: calc(36px / 2);
padding: 0 16px;
2020-07-21 09:50:35 +01:00
}
.pagination .next {
margin-inline-start: auto;
}
.social-icons {
padding: 12px 0;
}
2022-04-21 07:56:33 +01:00
.social-icons a {
display: inline-block;
line-height: 20px;
transition: var(--link-transition);
}
.social-icons a:not(:last-of-type) {
2022-04-21 07:56:33 +01:00
margin-right: 12px;
}
.social-icons a svg {
height: 26px;
width: 26px;
}
2022-04-21 07:56:33 +01:00
.social-icons a:hover {
color: var(--link-hover-color);
box-shadow: var(--link-hover-underline-shadow);
}
code {
direction: ltr;
}
2021-06-11 09:04:55 +01:00
div.highlight,
pre {
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;
user-select: none;
}
div.highlight:hover .copy-code,
pre:hover .copy-code {
display: block;
}
2022-04-22 08:00:00 +01:00
.meta-item {
display: inline-block;
}
2022-04-22 08:00:00 +01:00
.meta-item * {
color: var(--secondary);
}
.meta-item:not(:last-of-type):after {
content: "·";
margin-inline-start: .5em;
margin-inline-end: .5em;
2022-04-22 08:00:00 +01:00
}
.meta-item svg {
width: 1em;
height: 1em;
display: inline-block;
vertical-align: -0.15em;
}
.meta-item a {
transition: var(--link-transition);
}
.meta-item a:hover {
color: var(--primary);
box-shadow: 0 1px 0 var(--secondary);
}
.meta-item .post-tags a:not(:last-of-type) {
margin-inline-end: .3em;
}
.meta-item .post-tags a:not(:last-of-type):after {
content: ",";
}
.meta-item .post-tags a:before {
content: "#";
}
2022-05-09 14:54:28 +01:00
2022-05-09 15:26:30 +01:00
/* images */
figure > img {
image-rendering: -webkit-optimize-contrast;
}
.post-content img {
image-rendering: -webkit-optimize-contrast;
}
2022-05-09 14:54:28 +01:00
/* effects */
:root {
--shadow-color: 0deg 0% 0%;
--shadow-elevation-low:
0.6px 0.6px 1px hsl(var(--shadow-color) / 0.1),
0.9px 0.9px 1.4px -1.2px hsl(var(--shadow-color) / 0.1),
2.2px 2.2px 3.5px -2.5px hsl(var(--shadow-color) / 0.1);
--shadow-elevation-medium:
0.6px 0.6px 1px hsl(var(--shadow-color) / 0.11),
1.8px 1.8px 2.9px -0.8px hsl(var(--shadow-color) / 0.11),
4.6px 4.6px 7.3px -1.7px hsl(var(--shadow-color) / 0.11),
11.1px 11.1px 17.7px -2.5px hsl(var(--shadow-color) / 0.11);
--twitter-color: #4a99e9;
}
/* links page */
.links-container {
font-size: 16px;
}
.links-container blockquote {
margin: var(--gap) 0;
padding: 0 14px;
border-inline-start: 3px solid var(--primary);
}
.links .item {
padding: 12px;
background: var(--entry);
border-radius: var(--radius);
margin-bottom: var(--gap);
border: 1px solid var(--border);
}
.links .favicon {
display: inline-block;
background-size: 16px 16px;
width: 16px;
height: 16px;
image-rendering: -webkit-optimize-contrast;
}
.links .item .title {
}
.links .item .title .favicon {
margin-right: calc(var(--gap) / 2);
vertical-align: middle;
}
.links .item .title a:hover {
text-decoration: underline;
}
.links .item .description {
margin-left: calc(16px + var(--gap) / 2);
color: var(--secondary);
}
.links .item .description .delimiter::after {
content: "·";
margin-inline-start: .5em;
margin-inline-end: .5em;
}
2022-05-12 09:43:02 +01:00
/* shortcodes */
.standout {
font-size: 24px;
padding: .5em;
text-align: center;
}