July 17 2023
This commit is contained in:
parent
57d63103c4
commit
7421e17acd
|
@ -32,6 +32,14 @@ discord/themes/*
|
||||||
### there's actually nothing here yet lol
|
### there's actually nothing here yet lol
|
||||||
|
|
||||||
# ---> status.cafe
|
# ---> status.cafe
|
||||||
status.cafe/*.css
|
miscellany/websites/status cafe/*.css
|
||||||
status.cafe/*.css.*
|
miscellany/websites/status cafe/*.css.*
|
||||||
status.cafe/img/
|
miscellany/websites/status cafe/img/
|
||||||
|
|
||||||
|
# ---> piclog
|
||||||
|
miscellany/websites/piclog/*.css
|
||||||
|
miscellany/websites/piclog/*.css.*
|
||||||
|
miscellany/websites/piclog/img/
|
||||||
|
|
||||||
|
# ---> Thunar
|
||||||
|
thunar/accels.scm
|
|
@ -15,6 +15,7 @@ my %confDirs = (
|
||||||
"picom" => "picom",
|
"picom" => "picom",
|
||||||
"rofi" => "rofi",
|
"rofi" => "rofi",
|
||||||
"BetterDiscord" => "discord",
|
"BetterDiscord" => "discord",
|
||||||
|
"Thunar" => "thunar",
|
||||||
);
|
);
|
||||||
|
|
||||||
while (my ($key, $value) = each %confDirs) {
|
while (my ($key, $value) = each %confDirs) {
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
|
@ -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>
|
Loading…
Reference in New Issue