Generate Pelican site

This commit is contained in:
2020-08-21 11:04:33 +03:00
commit 2dc3770f8a
92 changed files with 12722 additions and 6273 deletions

14
theme/css/bootstrap.min.css vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

5
theme/css/fontawesome.min.css vendored Executable file

File diff suppressed because one or more lines are too long

48
theme/css/oldstyle.css Executable file
View file

@ -0,0 +1,48 @@
/* Restore colors as they were before adding Boostwatch support
* https://github.com/nairobilug/pelican-alchemy/pull/79
*
* Add THEME_CSS_OVERRIDES = ['theme/css/oldstyle.css']
* to your pelicanconf.py to enable this stylesheet */
::selection {
background: #0085a1;
color: #fff;
}
body {
background-color: #f5f5f5;
}
a {
color: #333;
}
a:focus,
a:hover {
color: #0085a1;
}
blockquote {
color: #818a91;
opacity: inherit;
}
.header {
border-bottom: 1px solid rgba(0,0,0,.1)
}
.main {
background-color: #fff;
}
.footer {
border-top: 1px solid rgba(0,0,0,.1)
}
.highlight pre {
border: 1px solid rgba(0,0,0,.1)
}
.pagination .page-link {
color: #333;
}

0
theme/css/pygments/algol.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/algol_nu.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/autumn.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/borland.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/bw.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/colorful.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/default.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/emacs.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/friendly.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/fruity.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/igor.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/lovelace.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/manni.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/monokai.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/murphy.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/native.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/paraiso-dark.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/paraiso-light.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/pastie.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/perldoc.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/rrt.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/tango.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/trac.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/vim.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/vs.min.css vendored Normal file → Executable file
View file

0
theme/css/pygments/xcode.min.css vendored Normal file → Executable file
View file

239
theme/css/theme.css Normal file → Executable file
View file

@ -1,127 +1,112 @@
::selection {
background: #0085a1;
color: #fff;
text-shadow: none;
}
body {
background-color: #f5f5f5;
}
a {
color: #333;
}
a:focus,
a:hover {
color: #0085a1;
}
blockquote {
color: #818a91;
font-style: italic;
}
hr {
margin: 1.5rem 0;
}
/* ------------------------------------------------------------------------- */
.container {
max-width: 960px;
}
.header,
.footer {
padding: 1.5rem 0 .5rem;
}
.header {
border-bottom: 1px solid rgba(0,0,0,.1);
}
.header img {
margin-bottom: 1rem;
}
.header .title {
font-weight: bold;
margin-bottom: 1rem;
}
.header ul,
.header li {
margin-bottom: .5rem;
}
.header ul {
font-size: 1.25rem;
font-weight: 300;
text-transform: lowercase;
}
.main {
background-color: #fff;
padding: 1.5rem 0;
}
.footer {
border-top: 1px solid rgba(0,0,0,.1);
}
.highlight pre {
border: 1px solid rgba(0,0,0,.1);
padding: 1rem;
}
.pagination .page-link {
color: #333;
}
.teaser header ul {
list-style: none;
padding-left: 0;
}
.teaser header li {
margin-bottom: .5rem;
}
.teaser .content p {
margin-bottom: 0;
}
.article header ul,
.article header li {
margin-bottom: .5rem;
}
.article header li:not(:last-child) {
margin-right: 10px;
}
.article .content a {
text-decoration: underline
}
@media (min-width: 576px) {
.header .title {
font-size: 3rem;
}
}
@media (max-width: 576px) {
.header,
.footer {
text-align: center;
}
.teaser header li {
display: inline-block;
}
.teaser header li:not(:last-child) {
margin-right: 10px;
}
}
:root {
--alchemy-border: rgba(0,0,0,.1);
}
::selection {
background: var(--primary);
color: var(--secondary);
text-shadow: none;
}
blockquote {
opacity: .7;
font-style: italic;
}
hr {
margin: 1.5rem 0;
}
/* ------------------------------------------------------------------------- */
.container {
max-width: 960px;
}
.header,
.footer {
padding: 1.5rem 0 .5rem;
}
.header {
border-bottom: 1px solid var(--alchemy-border);
}
.header img {
margin-bottom: 1rem;
}
.header .title {
font-weight: bold;
margin-bottom: 1rem;
}
.header ul,
.header li {
margin-bottom: .5rem;
}
.header ul {
font-size: 1.25rem;
font-weight: 300;
text-transform: lowercase;
}
.main {
padding: 1.5rem 0;
}
.footer {
border-top: 1px solid var(--alchemy-border);
}
.highlight pre {
border: 1px solid var(--alchemy-border);
padding: 1rem;
}
.teaser header ul {
list-style: none;
padding-left: 0;
}
.teaser header li {
margin-bottom: .5rem;
}
.teaser .content p {
margin-bottom: 0;
}
.article header ul,
.article header li {
margin-bottom: .5rem;
}
.article header li:not(:last-child) {
margin-right: 10px;
}
.article .content a {
text-decoration: underline
}
@media (min-width: 576px) {
.header .title {
font-size: 3rem;
}
}
@media (max-width: 576px) {
.header,
.footer {
text-align: center;
}
.teaser header li {
display: inline-block;
}
.teaser header li:not(:last-child) {
margin-right: 10px;
}
}