Files
hugo-PaperMod/assets/css/common/main.css
Kian Kasad 4425e21596 add buttons to copy code block contents
Adds a clickable "copy" link in the top-right corner of each code block.

If available, uses the navigator.clipboard API. Falls back to selecting
the text and calling document.execCommand('copy') to copy text.
2021-04-03 18:24:39 -07:00

62 lines
926 B
CSS

.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)
}
.page-header h1 {
font-size: 40px
}
.pagination {
display: flex
}
.pagination a {
color: var(--theme);
font-size: 13px;
line-height: 36px;
background: var(--primary);
border-radius: calc(36px / 2);
padding: 0 16px
}
.pagination .next {
margin-inline-start: auto
}
.social-icons {
padding: 12px 0
}
.social-icons a:not(:last-of-type) {
margin-inline-end: 12px
}
.social-icons a svg {
height: 26px;
width: 26px
}
code {
direction: ltr;
}
div.highlight {
position: relative;
}
.copy-code {
position: absolute;
top: 4px;
right: 16px;
color: var(--secondary);
}
.copy-code:hover {
cursor: pointer;
text-decoration: underline;
}