monet-ing?

This commit is contained in:
itspacchu 2024-03-22 16:57:00 +05:30
parent dad94ab4b7
commit e90bd9fc5f
7 changed files with 36 additions and 27 deletions

View file

@ -31,6 +31,7 @@
.social-icons a { .social-icons a {
display: inline-flex; display: inline-flex;
padding: 10px; padding: 10px;
color: var(--monet)
} }
.social-icons a svg { .social-icons a svg {

View file

@ -261,7 +261,9 @@
} }
.dark .toc { .dark .toc {
background: var(--entry); background: var(--theme);
border: 2px solid var(--code-bg);
} }
.toc details summary { .toc details summary {

View file

@ -19,6 +19,7 @@
.profile img { .profile img {
border-radius: 50%; border-radius: 50%;
box-shadow: 100px;
} }
.buttons { .buttons {
@ -27,11 +28,13 @@
} }
.button { .button {
background: var(--tertiary); background: var(--theme);
border-radius: var(--radius); border-radius: var(--radius);
margin: 8px; border: 2px solid var(--code-bg);
margin: 6px;
padding: 6px; padding: 6px;
transition: transform 0.1s; transition: transform 0.2s;
} }
.button-inner { .button-inner {
@ -39,5 +42,5 @@
} }
.button:active { .button:active {
transform: scale(0.96); transform: scale(0.9);
} }

View file

@ -1,33 +1,35 @@
#searchbox input { #searchbox input {
padding: 4px 10px; padding: 8px 12px;
width: 100%; width: 100%;
color: var(--primary); color: var(--monet);
font-weight: bold; font-weight: bold;
border: 2px solid var(--tertiary); border: 2px solid var(--code-bg);
border-radius: var(--radius); border-radius: var(--radius);
} }
#searchbox input:focus { #searchbox input:focus {
border-color: var(--secondary); border-color: var(--monet);
} }
#searchResults li { #searchResults li {
list-style: none; list-style: none;
border-radius: var(--radius); border-radius: var(--radius);
padding: 10px; border: 2px solid var(--code-bg);
margin: 10px 0; background-color: var(--theme);
padding: 8px;
margin: 20px 0px;
position: relative; position: relative;
font-weight: 500; font-weight: bold;
} }
#searchResults { #searchResults {
margin: 10px 0; margin: 15px 0;
width: 100%; width: 100%;
} }
#searchResults li:active { #searchResults li:active {
transition: transform 0.1s; transition: transform 0.2s;
transform: scale(0.98); transform: scale(0.95);
} }
#searchResults a { #searchResults a {
@ -40,6 +42,6 @@
} }
#searchResults .focus { #searchResults .focus {
transform: scale(0.98); transform: scale(1.1);
border: 2px solid var(--tertiary); border: 2px solid var(--monet);
} }

View file

@ -5,28 +5,29 @@
--main-width: 720px; --main-width: 720px;
--header-height: 60px; --header-height: 60px;
--footer-height: 60px; --footer-height: 60px;
--radius: 8px; --radius: 20px;
--theme: rgb(255, 255, 255); --theme: rgb(255, 255, 255);
--entry: rgb(255, 255, 255); --entry: rgb(255, 255, 255);
--primary: rgb(30, 30, 30); --primary: rgb(15, 15, 15);
--secondary: rgb(108, 108, 108); --secondary: rgb(108, 108, 108);
--tertiary: rgb(214, 214, 214); --tertiary: rgb(214, 214, 214);
--content: rgb(31, 31, 31); --content: rgb(31, 31, 31);
--code-block-bg: rgb(28, 29, 33); --code-block-bg: rgb(28, 29, 33);
--code-bg: rgb(245, 245, 245); --code-bg: rgb(245, 245, 245);
--border: rgb(238, 238, 238); --border: #2D1410;
} }
.dark { .dark {
--theme: rgb(29, 30, 32); --theme: #0C0B11;
--entry: rgb(46, 46, 51); --entry: rgb(46, 46, 51);
--primary: rgb(218, 218, 219); --primary: rgb(218, 218, 219);
--secondary: rgb(155, 156, 157); --secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68); --tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197); --content: rgb(196, 196, 197);
--code-block-bg: rgb(46, 46, 51); --code-block-bg: #553A4A;
--code-bg: rgb(55, 56, 62); --code-bg: #553A4A;
--border: rgb(51, 51, 51); --border: #553A4A;
--monet: #785767;
} }
.list { .list {

View file

@ -1,3 +1,3 @@
{{- define "main" }} {{- define "main" }}
<div class="not-found">404</div> <div class="not-found">/dev/null</div>
{{- end }}{{/* end main */ -}} {{- end }}{{/* end main */ -}}

View file

@ -8,7 +8,7 @@
<span> <span>
Powered by Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> & <a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a> <a href="https://github.com/itspacchu/pacblog-hugo-PaperMod" rel="noopener" target="_blank">PaperMod modified</a>
</span> </span>
</footer> </footer>
{{- end }} {{- end }}