July 17 2023

This commit is contained in:
ngoomie 2023-07-17 20:24:56 -06:00
parent 57d63103c4
commit 7421e17acd
6 changed files with 131 additions and 3 deletions

14
.gitignore vendored
View File

@ -32,6 +32,14 @@ discord/themes/*
### there's actually nothing here yet lol
# ---> status.cafe
status.cafe/*.css
status.cafe/*.css.*
status.cafe/img/
miscellany/websites/status cafe/*.css
miscellany/websites/status cafe/*.css.*
miscellany/websites/status cafe/img/
# ---> piclog
miscellany/websites/piclog/*.css
miscellany/websites/piclog/*.css.*
miscellany/websites/piclog/img/
# ---> Thunar
thunar/accels.scm

View File

@ -15,6 +15,7 @@ my %confDirs = (
"picom" => "picom",
"rofi" => "rofi",
"BetterDiscord" => "discord",
"Thunar" => "thunar",
);
while (my ($key, $value) = each %confDirs) {

View File

@ -0,0 +1,7 @@
div.pure-u-md-2-24:nth-child(1), div.pure-u-md-2-24:nth-child(3) {
width: 5%;
}
div#contents {
width: 90% !important;
}

View File

@ -0,0 +1,97 @@
@use "sass:math";
$border: 1px solid black;
$padding: 1.2rem;
// ------ page-wide or multi-element
html, body {
font-family: sans-serif;
}
a {
text-decoration: none;
font-family: monospace;
font-weight: bold;
}
.main-header, main, .main-footer {
max-width: 60rem;
}
.main-header, h1:nth-of-type(1), p.rss {
text-align: center;
}
h1:nth-of-type(1), p.rss, div#nuAboutCont, div.pagination {
grid-column: 1/-1;
}
// ------ main body
main {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
gap: math.div($padding, 2);
}
// --- about section
p.about, p:nth-of-type(2) {
display: none
}
div#nuAboutCont {
display: flex;
justify-content: center;
}
div#nuAboutInnr {
max-width: 35rem;
border: $border;
}
div.nuAboutSec {
padding: $padding;
border-top: 1px solid black;
}
div.nuAboutSec:nth-of-type(1) {
border-top: none;
}
h3.nuAboutHdr {
margin-top: 0;
}
div.nuAboutTbl {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
gap: $padding;
div.nuAboutTbl {
width: 100%;
text-align: center;
}
}
// --- gallery
article {
padding: math.div($padding, 2);
width: 100%;
aspect-ratio: 1 / 1;
overflow: scroll;
img { max-width: 100% }
border: $border;
}
h2.title {
font-size: 1rem;
}
p.description {
font-size: 0.8rem;
padding: 0;
}
div.meta {
font-size: 0.8rem;
font-style: italic;
}

15
thunar/uca.xml Normal file
View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<icon>utilities-terminal</icon>
<name>Open terminal here</name>
<submenu></submenu>
<unique-id>1660871780809056-1</unique-id>
<command>exo-open --working-directory %f --launch TerminalEmulator</command>
<description>Opens a terminal in the selected directory</description>
<range></range>
<patterns>*</patterns>
<startup-notify/>
<directories/>
</action>
</actions>