Compare commits
5 Commits
3187fbf4f9
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 6961052372 | |||
| c82b53b147 | |||
| afe7421e57 | |||
| eb8f8485ca | |||
| 9408e214d3 |
@@ -4,11 +4,11 @@ Grav CMS theme for my personal website
|
||||
|
||||
## License info
|
||||
|
||||
Paxover is not basically designed for public use (I developed it for my personal needs), but it's not prohibited. You must be aware that Paxover doesn't work like popular Grav themes, where you can configure everything at settings; some pages are created rigidly in templates (of course, you can modify them). It's distributed under the MIT license. [Full text](https://codeberg.org/tymoteuszjozwiak/paxover/src/branch/master/LICENSE).
|
||||
Paxover is not basically designed for public use (I developed it for my personal needs), but it's not prohibited. You must be aware that Paxover doesn't work like popular Grav themes, where you can configure everything at settings; some pages are created rigidly in templates (of course, you can modify them). It's distributed under the MIT license. [Full text](https://git.jozwiak.top/tymoteusz/paxover/src/branch/master/LICENSE).
|
||||
|
||||
## Installation
|
||||
|
||||
GPM installation is not supported. To install Paxover, [download the zip version of this repository](https://codeberg.org/tymoteuszjozwiak/paxover/archive/master.zip) and unzip it under `/your-site-path/user/themes`. Then, rename the folder to `paxover`. You'll need only to enable Paxover in your Admin Panel settings or change enabled value to `true` under `/your-site-path/user/config/themes/paxover.yaml`.
|
||||
GPM installation is not supported. To install Paxover, [download the zip version of this repository](https://git.jozwiak.top/tymoteusz/paxover/archive/master.zip) and unzip it under `/your-site-path/user/themes`. Then, rename the folder to `paxover`. You'll need only to enable Paxover in your Admin Panel settings or change enabled value to `true` under `/your-site-path/user/config/themes/paxover.yaml`.
|
||||
|
||||
## Custom images
|
||||
|
||||
|
||||
@@ -9,7 +9,8 @@
|
||||
--card-shadow-color: #00000033;
|
||||
}
|
||||
|
||||
.btn, button {
|
||||
.btn,
|
||||
button {
|
||||
border: none;
|
||||
}
|
||||
|
||||
@@ -27,7 +28,8 @@
|
||||
--card-shadow-color: #1f2223;
|
||||
}
|
||||
|
||||
.btn, button {
|
||||
.btn,
|
||||
button {
|
||||
border: 0.001rem solid var(--txt-color);
|
||||
}
|
||||
}
|
||||
@@ -72,6 +74,18 @@ a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.notices a {
|
||||
color: inherit;
|
||||
text-decoration: underline;
|
||||
font-weight: inherit;
|
||||
}
|
||||
|
||||
.notices a:hover,
|
||||
.notices a:focus {
|
||||
color: inherit;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.bx {
|
||||
vertical-align: middle;
|
||||
}
|
||||
@@ -118,6 +132,7 @@ a:hover {
|
||||
.btn:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.btn {
|
||||
font-weight: 700;
|
||||
transition: all 0.25s;
|
||||
@@ -175,7 +190,8 @@ a:hover {
|
||||
background-color: #0986c9;
|
||||
}
|
||||
|
||||
form input, form button {
|
||||
form input,
|
||||
form button {
|
||||
font-family: "Atkinson Hyperlegible", sans-serif !important;
|
||||
font-size: 1.5rem;
|
||||
min-height: 3rem;
|
||||
@@ -249,7 +265,8 @@ form .annotation {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.card-link:hover .post-title, .card-link:hover .post-details {
|
||||
.card-link:hover .post-title,
|
||||
.card-link:hover .post-details {
|
||||
transition: color 0.3s ease;
|
||||
color: var(--hover-color);
|
||||
}
|
||||
@@ -482,7 +499,8 @@ nav .nav-btn {
|
||||
max-width: 55%;
|
||||
}
|
||||
|
||||
form input, form button {
|
||||
form input,
|
||||
form button {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
|
||||
@@ -4,9 +4,10 @@
|
||||
{% set year = theme_config.footer.year ~ "-" ~ "now"|date("y") %}
|
||||
{% endif %}
|
||||
<span class="footer-copyright">
|
||||
© {{ year }}
|
||||
{% if theme_config.footer.info_en is defined and theme_config.footer.info_en is not empty %}
|
||||
{{ theme_config.footer.info_en }}
|
||||
© {{ year }} | {{ theme_config.footer.info_en|raw }}
|
||||
{% else %}
|
||||
© {{ year }}
|
||||
{% endif %}
|
||||
</span>
|
||||
<span class="footer-link">
|
||||
|
||||
@@ -4,9 +4,10 @@
|
||||
{% set year = theme_config.footer.year ~ "-" ~ "now"|date("y") %}
|
||||
{% endif %}
|
||||
<span class="footer-copyright">
|
||||
© {{ year }}
|
||||
{% if theme_config.footer.info is defined and theme_config.footer.info is not empty %}
|
||||
{{ theme_config.footer.info }}
|
||||
© {{ year }} | {{ theme_config.footer.info|raw }}
|
||||
{% else %}
|
||||
© {{ year }}
|
||||
{% endif %}
|
||||
</span>
|
||||
<span class="footer-link">
|
||||
|
||||
Reference in New Issue
Block a user