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);
}