summaryrefslogtreecommitdiff
path: root/themes/PaperMod/assets/css/common/main.css
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2025-09-01 11:27:12 -0700
committerrtk0c <[email protected]>2025-09-01 11:27:12 -0700
commit568d2f599f7f42494758797f0d052f3a2847cbf0 (patch)
treec16ace68524dc3c554f83f7501cc9acf255ac0f4 /themes/PaperMod/assets/css/common/main.css
parentcb3897c9f07769a820a4fea23946a78fea6456cb (diff)
parent86b0d0c422e34c38837b5b5495ad6d295d0e73d2 (diff)
Merge commit '86b0d0c422e34c38837b5b5495ad6d295d0e73d2' as 'themes/PaperMod'
Diffstat (limited to 'themes/PaperMod/assets/css/common/main.css')
-rw-r--r--themes/PaperMod/assets/css/common/main.css66
1 files changed, 66 insertions, 0 deletions
diff --git a/themes/PaperMod/assets/css/common/main.css b/themes/PaperMod/assets/css/common/main.css
new file mode 100644
index 0000000..25ae4da
--- /dev/null
+++ b/themes/PaperMod/assets/css/common/main.css
@@ -0,0 +1,66 @@
+.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 a {
+ display: inline-flex;
+ padding: 10px;
+}
+
+.social-icons a svg {
+ height: 26px;
+ width: 26px;
+}
+
+code {
+ direction: ltr;
+}
+
+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;
+}