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 {
display: inline-flex;
padding: 10px;
color: var(--monet)
}
.social-icons a svg {

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -8,7 +8,7 @@
<span>
Powered by
<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>
</footer>
{{- end }}