Add update script, other stuff

This commit is contained in:
~erin 2022-03-05 10:40:51 -05:00
parent 5df7283880
commit ccf9e3540d
No known key found for this signature in database
GPG Key ID: DA70E064A8C70F44
4 changed files with 15 additions and 7 deletions

View File

@ -5,7 +5,13 @@ html {
color: $foreground-color;
line-height: 1.50;
background: $background-color;
scroll-behavior: smooth;
}
/* Smooth scrolling IF user doesn't have a preference due to motion sensitivities */
@media screen and (prefers-reduced-motion: no-preference) {
html {
scroll-behavior: smooth;
}
}
.section {
@ -18,6 +24,7 @@ box-shadow: 5px 5px 17px #060606,
}
.inner-section {
background: $background-color;
max-width: 18cm;
margin: 0 auto;
margin-top: 5mm;

View File

@ -74,11 +74,12 @@ blockquote blockquote blockquote blockquote blockquote blockquote blockquote {
code, pre {
font-family: "Fira Code", monospace;
overflow: scroll;
//overflow: scroll;
border-radius: 10px;
padding: 10px;
background-color: #0E0E10 !important;
box-shadow: inset 5px 5px 10px #070708,
background: $background-color !important;
box-shadow: inset 5px 5px 10px #070708,
inset -5px -5px 10px #151518;
}

View File

@ -5,7 +5,5 @@ permalink: /blog
# {{page.title}}
{% for post in collections.posts.pages %}
### {{post.title}}
[{{ post.title }}]({{ post.permalink }})
### [{{ post.title }}](/{{ post.permalink }})
{% endfor %}

2
update.zsh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/zsh
rsync -rauz --del --groupmap=erin:www-data --progress _site/ erin@is-cute.ml:~/website