chore: Update CI
This commit is contained in:
@ -1,18 +1,18 @@
|
|||||||
clone:
|
clone:
|
||||||
git:
|
git:
|
||||||
image: bash
|
image: fish
|
||||||
commands:
|
commands:
|
||||||
- cd /home/daudix
|
- cd ~/.exoci
|
||||||
- if [ -d .exoci/duckquill ]; then
|
- if [ -d duckquill ]; then
|
||||||
- cd .exoci/duckquill
|
- cd duckquill
|
||||||
- git pull
|
- git pull
|
||||||
- else
|
- else
|
||||||
- git clone https://git.exozy.me/daudix/duckquill.git .exoci/duckquill
|
- git clone https://git.exozy.me/daudix/duckquill.git
|
||||||
- fi
|
- fi
|
||||||
|
|
||||||
pipeline:
|
pipeline:
|
||||||
build:
|
build:
|
||||||
image: bash
|
image: fish
|
||||||
commands:
|
commands:
|
||||||
- cd /home/daudix/.exoci/duckquill
|
- cd ~/.exoci/duckquill
|
||||||
- ~/.nix-profile/bin/zola build --output-dir /srv/http/pages/duckquill --force
|
- zola build --output-dir /srv/http/pages/duckquill --force
|
||||||
|
@ -94,7 +94,7 @@ stylesheets = [
|
|||||||
|
|
||||||
Then, paste the following code inside `sass/custom.scss` (inside your site, not the theme):
|
Then, paste the following code inside `sass/custom.scss` (inside your site, not the theme):
|
||||||
|
|
||||||
```sass
|
```scss
|
||||||
@use "sass:color";
|
@use "sass:color";
|
||||||
|
|
||||||
$primary-color: #HEX_COLOR_CODE;
|
$primary-color: #HEX_COLOR_CODE;
|
||||||
|
@ -105,10 +105,10 @@ a {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: var(--primary-color);
|
color: var(--primary-color);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
&:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
b,
|
b,
|
||||||
|
Reference in New Issue
Block a user