Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
f53ffb555f | |||
548d005c21 | |||
1cd6c41715 | |||
022dd5b48b
|
|||
bf02657481
|
3
.changes/1.0.0.md
Normal file
3
.changes/1.0.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## 1.0.0 - 2024-01-24
|
||||
### Added
|
||||
* Started brand new website
|
3
.changes/2.0.0.md
Normal file
3
.changes/2.0.0.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## 2.0.0 - 2024-01-24
|
||||
### Changed
|
||||
* Button styling updated to match the other buttons
|
6
.changes/header.tpl.md
Normal file
6
.changes/header.tpl.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
0
.changes/unreleased/.gitkeep
Normal file
0
.changes/unreleased/.gitkeep
Normal file
26
.changie.yaml
Normal file
26
.changie.yaml
Normal file
@@ -0,0 +1,26 @@
|
||||
changesDir: .changes
|
||||
unreleasedDir: unreleased
|
||||
headerPath: header.tpl.md
|
||||
changelogPath: CHANGELOG.md
|
||||
versionExt: md
|
||||
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
|
||||
kindFormat: '### {{.Kind}}'
|
||||
changeFormat: '* {{.Body}}'
|
||||
kinds:
|
||||
- label: Added
|
||||
auto: minor
|
||||
- label: Changed
|
||||
auto: major
|
||||
- label: Deprecated
|
||||
auto: minor
|
||||
- label: Removed
|
||||
auto: major
|
||||
- label: Fixed
|
||||
auto: patch
|
||||
- label: Security
|
||||
auto: patch
|
||||
newlines:
|
||||
afterChangelogHeader: 1
|
||||
beforeChangelogVersion: 1
|
||||
endOfVersion: 1
|
||||
envPrefix: CHANGIE_
|
3
.gitignore
vendored
3
.gitignore
vendored
@@ -14,4 +14,5 @@ resources
|
||||
jsconfig.json
|
||||
hugo_stats.json
|
||||
go.sum
|
||||
yarn.lock
|
||||
yarn.lock
|
||||
.idea/*
|
||||
|
15
CHANGELOG.md
Normal file
15
CHANGELOG.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
||||
|
||||
|
||||
## 2.0.0 - 2024-01-24
|
||||
### Changed
|
||||
* Button styling updated to match the other buttons
|
||||
|
||||
## 1.0.0 - 2024-01-24
|
||||
### Added
|
||||
* Started brand new website
|
@@ -92,6 +92,18 @@ header.header {
|
||||
padding-top: 0rem;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
.btn-primary {
|
||||
background-color: $orange;
|
||||
border: 1px solid $orange;
|
||||
color: white;
|
||||
&:hover {
|
||||
background-color: $chill-orange;
|
||||
border: 1px solid $chill-orange;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
main > section {
|
||||
&.hero {
|
||||
height: 100vh;
|
||||
@@ -104,6 +116,10 @@ main > section {
|
||||
background-color: $orange;
|
||||
color: white;
|
||||
border-color: $orange;
|
||||
&:hover {
|
||||
background-color: $chill-orange;
|
||||
border: 1px solid $chill-orange;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.section-1 {
|
||||
|
Reference in New Issue
Block a user