Compare commits
20 Commits
Author | SHA1 | Date | |
---|---|---|---|
b81316bafa | |||
41a692c07e | |||
2db8642805 | |||
|
a4d9f9bd04 | ||
|
417d5b7388 | ||
|
6f7ba303d4 | ||
|
8f13325ed7 | ||
006af61985 | |||
|
09c2a759d2 | ||
|
34d090529a | ||
|
cca8df9a32 | ||
|
2701ce0e53 | ||
|
8900219b73 | ||
|
4f97dc49d6 | ||
|
9c9e568c19 | ||
|
a79328f632 | ||
08dc92f910 | |||
3869483a73 | |||
37f52091b4 | |||
f0f6d751ca |
36
.gitea/workflows/deploy.yaml
Normal file
36
.gitea/workflows/deploy.yaml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
name: Gitea Actions Demo
|
||||||
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- Release
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
create_release:
|
||||||
|
steps:
|
||||||
|
- name: Check out den Quellcode
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install build environment
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm install
|
||||||
|
|
||||||
|
- name: Build source
|
||||||
|
run: npm run build
|
||||||
|
|
||||||
|
- name: create release
|
||||||
|
id: create_release
|
||||||
|
run: |
|
||||||
|
git config user.name "gitea"
|
||||||
|
git config user.email "gitea@git.slpnetwork.de"
|
||||||
|
|
||||||
|
git tag v${{ gitea.run_number }} -m "Automatisches Release erstellt"
|
||||||
|
|
||||||
|
git push origin v${{ gitea.run_number }}
|
||||||
|
|
||||||
|
- name: Print Release URL
|
||||||
|
run: echo "Created release"
|
39
README.md
39
README.md
@ -1,26 +1,21 @@
|
|||||||
# steevcss
|
# steevcss
|
||||||
my own collection of html, css and javascript code combined to a webframework
|
my own collection of html, css and javascript code combined to a webframework
|
||||||
|
|
||||||
## Feature List
|
## Documentation
|
||||||
1. GridSystem 12 Elemente [Implemented]
|
You can find the Documentation [Here](https://steevlp.github.io/steevcss/)
|
||||||
2. Code Preview
|
|
||||||
3. SlideShow
|
|
||||||
4. Navigations [Implemented]
|
|
||||||
5. Vordefinierter container [Implemented]
|
|
||||||
6. Footer
|
|
||||||
7. Styled Lists
|
|
||||||
8. Slider
|
|
||||||
9. Styled Buttons
|
|
||||||
10. Styled Form Elements / Groups
|
|
||||||
11. Image Cards (styled image containers with text)
|
|
||||||
12. general styled images (rounded borders)
|
|
||||||
13. Dropdowns
|
|
||||||
14. colored sections (a full length area with defined background-color)
|
|
||||||
15. Alert Sections [Implemented]
|
|
||||||
|
|
||||||
## Stuff i already found
|
## Todo
|
||||||
1. responsiveness is a bit messy
|
1. [X] GridSystem with 12 Elements [Implemented]
|
||||||
2. images in navbar are completely messed up
|
2. [ ] Code Preview
|
||||||
3. the colors may need a tweak
|
3. [ ] SlideShow
|
||||||
4. mobile toggle button needs to be bigger
|
4. [X] Navigations [Implemented]
|
||||||
5. revert back to standard font collection with verdana in it
|
5. [X] Vordefinierter container [Implemented]
|
||||||
|
6. [ ] Footer
|
||||||
|
7. [ ] Styled Lists
|
||||||
|
8. [X] Slider [Implemented]
|
||||||
|
9. [X] Styled Buttons [Implemented]
|
||||||
|
10. [ ] Styled Form Elements / Groups
|
||||||
|
11. [ ] Image Cards (styled image containers with text)
|
||||||
|
12. [ ] general styled images (rounded borders)
|
||||||
|
13. [ ] Dropdowns
|
||||||
|
14. [X]Alert Sections [Implemented]
|
||||||
|
16826
package-lock.json
generated
16826
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -10,11 +10,11 @@
|
|||||||
"author": "steev",
|
"author": "steev",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"node-sass": "^5.0.0",
|
"node-sass": "^9.0.0",
|
||||||
"parcel-bundler": "^1.3.1",
|
"parcel-bundler": "^1.3.1",
|
||||||
"sass": "^1.32.5"
|
"sass": "^1.32.5"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"core-js": "^3.21.1"
|
"core-js": "^3.33.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@ hr
|
|||||||
body
|
body
|
||||||
margin: 0
|
margin: 0
|
||||||
padding: 0
|
padding: 0
|
||||||
background: $neutral
|
background: $neutral_gray_light
|
||||||
main
|
main
|
||||||
z-index: 980
|
z-index: 980
|
||||||
position: relative
|
position: relative
|
||||||
|
Loading…
x
Reference in New Issue
Block a user