This commit is contained in:
parent
d40b8d06c2
commit
ab0fe69678
5 changed files with 16 additions and 8 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -145,3 +145,4 @@ dist
|
|||
.yarn/install-state.gz
|
||||
.pnp.*
|
||||
|
||||
package-lock.json
|
||||
|
|
|
@ -2,11 +2,9 @@
|
|||
|
||||
It's recommended to install and use prettier when making contributions, prettier doesn't handle go templates well so if you would like to use prettier then refer to this project: https://github.com/NiklasPor/prettier-plugin-go-template.
|
||||
|
||||
|
||||
|
||||
## Thanks To
|
||||
https://cruip.com/ for providing the original theme licensed under GPLv3
|
||||
https://github.com/dchucks for providing the hugo theme template converted from the raw HTML
|
||||
|
||||
## License
|
||||
The "Theme" defined by the files located in the theme/agnes directory is licensed under GPLv3, content located on the hugo generated website is licensed as the owner of such content defines
|
||||
The "Theme" defined by the files located in the theme/agnes directory is licensed under GPLv3, content located on the hugo generated website is licensed as the owner of such content defines. "Content" located on the website is defined in the hugo.toml file.
|
6
package.json
Normal file
6
package.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"devDependencies": {
|
||||
"prettier": "^3.2.5",
|
||||
"prettier-plugin-go-template": "^0.0.15"
|
||||
}
|
||||
}
|
|
@ -50,7 +50,7 @@
|
|||
</section>
|
||||
<section class="section">
|
||||
<div class="contact container has-top-divider">
|
||||
<h2 class="section-title mt-0 text-center">Contact</h2>
|
||||
<h2 class="contact section-title mt-0 text-center">Contact</h2>
|
||||
<div class="contact-flex">
|
||||
<div class="contact-inner">
|
||||
{{ range .Site.Params.buttons }}
|
||||
|
|
|
@ -17,9 +17,9 @@ html {
|
|||
-webkit-text-size-adjust: 100%;
|
||||
scroll-behavior: smooth;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
transform: scale(0.85);
|
||||
/* transform: scale(0.85);
|
||||
transform-origin: 0 0;
|
||||
width: 117.5%;
|
||||
width: 117.5%; */
|
||||
}
|
||||
|
||||
body {
|
||||
|
@ -259,6 +259,7 @@ p {
|
|||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 1rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.full-width {
|
||||
|
@ -588,7 +589,8 @@ p {
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
.pricing .section-title {
|
||||
.pricing .section-title,
|
||||
.contact .section-title {
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
|
@ -716,7 +718,8 @@ p {
|
|||
}
|
||||
|
||||
@media (min-width: 641px) {
|
||||
.pricing .section-title {
|
||||
.pricing .section-title,
|
||||
.contact .section-title {
|
||||
margin-bottom: 64px;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue