Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bcdfbaf5f8 | ||
|
|
c39a2fbe62 | ||
|
|
e53d8bc4a8 | ||
| fb515153e3 | |||
|
|
d24e3e4acd | ||
|
|
cae3a11e4e | ||
|
|
51b6898265 | ||
|
|
034379e200 | ||
|
|
771913b350 | ||
| 388ae1734a | |||
| f8c6a74a1c | |||
| f82bc3f591 | |||
| 3e40b4e007 |
@ -40,6 +40,8 @@ It is based on the [Duckquill](https://duckquill.daudix.one) theme for blogs.
|
|||||||
- [aparoksha.dev](https://aparoksha.dev)
|
- [aparoksha.dev](https://aparoksha.dev)
|
||||||
- [david.aparoksha.dev](https://david.aparoksha.dev)
|
- [david.aparoksha.dev](https://david.aparoksha.dev)
|
||||||
- [duckling.aparoksha.dev](https://duckling.aparoksha.dev)
|
- [duckling.aparoksha.dev](https://duckling.aparoksha.dev)
|
||||||
|
- [dwagon.cc](https://dwagon.cc)
|
||||||
|
- [present.quest](https://present.quest/)
|
||||||
- Yours? <small>(feel free to send a pull request)</small>
|
- Yours? <small>(feel free to send a pull request)</small>
|
||||||
|
|
||||||
### Thanks To
|
### Thanks To
|
||||||
|
|||||||
@ -8,7 +8,7 @@ tags = ["Release", "Demo", "Test"]
|
|||||||
[extra.comments]
|
[extra.comments]
|
||||||
host = "mastodon.de"
|
host = "mastodon.de"
|
||||||
user = "david_swift"
|
user = "david_swift"
|
||||||
id = "" # TODO: Add id
|
id = "114331050904633228"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
Duckling is here!
|
Duckling is here!
|
||||||
|
|||||||
12
content/blog/0.1.1/index.md
Normal file
12
content/blog/0.1.1/index.md
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
+++
|
||||||
|
authors = ["david-swift"]
|
||||||
|
title = "Release 0.1.1"
|
||||||
|
description = "Some minor changes"
|
||||||
|
date = 2025-04-23
|
||||||
|
[taxonomies]
|
||||||
|
tags = ["Release", "Demo", "Test"]
|
||||||
|
+++
|
||||||
|
|
||||||
|
- Remove animation from sidebar toggle button
|
||||||
|
- Fix tags in blogs overview not transparent
|
||||||
|
- Update docs
|
||||||
@ -29,7 +29,7 @@ It is highly recommended to switch from the `main` branch to the latest release:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd themes/duckling
|
cd themes/duckling
|
||||||
git checkout tags/v0.1.0
|
git checkout tags/0.1.1
|
||||||
```
|
```
|
||||||
|
|
||||||
Then, enable it in your `config.toml`:
|
Then, enable it in your `config.toml`:
|
||||||
@ -43,6 +43,6 @@ To update the theme, simply switch to a new tag:
|
|||||||
```bash
|
```bash
|
||||||
git submodule update --remote --merge
|
git submodule update --remote --merge
|
||||||
cd themes/duckling
|
cd themes/duckling
|
||||||
git checkout tags/v0.1.0
|
git checkout tags/0.1.1
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@ -65,6 +65,8 @@
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
font-family: var(--font-system-ui);
|
font-family: var(--font-system-ui);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
-webkit-mask-image: var(--icon-right);
|
-webkit-mask-image: var(--icon-right);
|
||||||
@ -131,12 +133,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.draft {
|
&.draft {
|
||||||
--bg-overlay: var(--fg-muted-1);
|
--bg-overlay: var(--fg-muted-1-transparent);
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
-webkit-mask-image: var(--icon-pencil);
|
-webkit-mask-image: var(--icon-pencil);
|
||||||
mask-image: var(--icon-pencil);
|
mask-image: var(--icon-pencil);
|
||||||
background-color: var(--fg-muted-1);
|
background-color: var(--fg-muted-1-transparent);
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
@ -144,7 +146,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.badge {
|
.badge {
|
||||||
background-color: var(--fg-muted-1);
|
background-color: var(--fg-muted-1-transparent);
|
||||||
color: var(--fg-muted-5);
|
color: var(--fg-muted-5);
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
@ -154,7 +156,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.tags a {
|
.tags a {
|
||||||
background-color: var(--fg-muted-1);
|
background-color: var(--fg-muted-1-transparent-transparent);
|
||||||
color: var(--fg-muted-5);
|
color: var(--fg-muted-5);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
@ -275,7 +277,7 @@
|
|||||||
transition: var(--transition);
|
transition: var(--transition);
|
||||||
box-shadow: var(--edge-highlight);
|
box-shadow: var(--edge-highlight);
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
background-color: var(--fg-muted-1);
|
background-color: var(--fg-muted-1-transparent);
|
||||||
padding: 0.7rem;
|
padding: 0.7rem;
|
||||||
color: var(--fg-muted-4);
|
color: var(--fg-muted-4);
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
|
|||||||
@ -63,7 +63,7 @@
|
|||||||
position: fixed;
|
position: fixed;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
margin: 1rem;
|
margin: 1rem;
|
||||||
z-index: 100;
|
z-index: 9;
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
-webkit-mask-image: var(--icon-sidebar);
|
-webkit-mask-image: var(--icon-sidebar);
|
||||||
@ -104,11 +104,6 @@
|
|||||||
transition: left 0.3s;
|
transition: left 0.3s;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebar-toggle:checked ~ .toggle-label {
|
|
||||||
left: 15em;
|
|
||||||
transition: left 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar-toggle:checked ~ .toggle-overlay {
|
#sidebar-toggle:checked ~ .toggle-overlay {
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
transition: background-color 0.3s;
|
transition: background-color 0.3s;
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
a {
|
a {
|
||||||
transition: var(--transition);
|
transition: var(--transition);
|
||||||
border-radius: 999px;
|
border-radius: 999px;
|
||||||
background-color: var(--fg-muted-1);
|
background-color: var(--fg-muted-1-transparent);
|
||||||
padding: 0.375rem 0.75rem;
|
padding: 0.375rem 0.75rem;
|
||||||
color: var(--fg-muted-5);
|
color: var(--fg-muted-5);
|
||||||
font-size: var(--font-size-small);
|
font-size: var(--font-size-small);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user