101 lines
1.7 KiB
Bash
101 lines
1.7 KiB
Bash
showgenerator="true"
|
|
backtotop="true"
|
|
lastupdated="true"
|
|
rssfeed="true"
|
|
|
|
site_title="siina.monster"
|
|
site_description="thoughts and things and stuff"
|
|
site_link="https://siina.monster/"
|
|
publish_dir="."
|
|
|
|
# Put CSS between <<EOF and EOF
|
|
site_css=$(cat <<EOF
|
|
/* font by https://www.1001fonts.com/users/junkohanhero/ */
|
|
@font-face { font-family: header; src: url(scratch_x_black.ttf); }
|
|
body {
|
|
background-color: #0f0f0f;
|
|
color: #fff;
|
|
font-family: 'Arial Rounded MT', sans-serif;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
margin: 0;
|
|
/* font legibility optimizations */
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
.container {
|
|
max-width: 800px;
|
|
padding: 20px;
|
|
border-radius: 15px;
|
|
}
|
|
.note {
|
|
background-color: #181717;
|
|
padding: 10px;
|
|
margin-bottom: 20px;
|
|
border-radius: 10px;
|
|
}
|
|
h1 {
|
|
text-align: center;
|
|
font-family: "header", sans-serif;
|
|
}
|
|
h3 {
|
|
color: #fff;
|
|
}
|
|
img {
|
|
border-radius: 5px;
|
|
}
|
|
note {
|
|
color: #fff;
|
|
white-space: pre-wrap;
|
|
}
|
|
code {
|
|
color: #00ff62b5;
|
|
font-family: "Lucida Console", "Courier New", monospace;
|
|
white-space: pre-wrap;
|
|
}
|
|
.back-to-top {
|
|
text-align: right;
|
|
margin-top: 20px;
|
|
}
|
|
.last-updated {
|
|
text-align: right;
|
|
margin-bottom: 20px;
|
|
color: #888;
|
|
font-size: 13px;
|
|
}
|
|
a:link, a:visited, a:hover, a:active {
|
|
color: #B2A4D4;
|
|
font-style: normal;
|
|
text-decoration: underline;
|
|
}
|
|
/* le tableee */
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border: 1px solid #fff;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
color: #fff;
|
|
}
|
|
|
|
th, td {
|
|
padding: 10px 15px;
|
|
border: 1px solid #fff;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
th {
|
|
background: #1f1f1f;
|
|
text-align: left;
|
|
font-weight: bold;
|
|
}
|
|
|
|
td {
|
|
background: #0b0b0b;
|
|
}
|
|
EOF
|
|
)
|