Compare commits
No commits in common. "main" and "1.0" have entirely different histories.
@ -1,36 +0,0 @@
|
|||||||
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,21 +1,26 @@
|
|||||||
# 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
|
||||||
|
|
||||||
## Documentation
|
## Feature List
|
||||||
You can find the Documentation [Here](https://steevlp.github.io/steevcss/)
|
1. GridSystem 12 Elemente [Implemented]
|
||||||
|
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]
|
||||||
|
|
||||||
## Todo
|
## Stuff i already found
|
||||||
1. [X] GridSystem with 12 Elements [Implemented]
|
1. responsiveness is a bit messy
|
||||||
2. [ ] Code Preview
|
2. images in navbar are completely messed up
|
||||||
3. [ ] SlideShow
|
3. the colors may need a tweak
|
||||||
4. [X] Navigations [Implemented]
|
4. mobile toggle button needs to be bigger
|
||||||
5. [X] Vordefinierter container [Implemented]
|
5. revert back to standard font collection with verdana in it
|
||||||
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]
|
|
16034
package-lock.json
generated
16034
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": "^9.0.0",
|
"node-sass": "^5.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.33.0"
|
"core-js": "^3.21.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@ hr
|
|||||||
body
|
body
|
||||||
margin: 0
|
margin: 0
|
||||||
padding: 0
|
padding: 0
|
||||||
background: $neutral_gray_light
|
background: $neutral
|
||||||
main
|
main
|
||||||
z-index: 980
|
z-index: 980
|
||||||
position: relative
|
position: relative
|
||||||
|
Loading…
x
Reference in New Issue
Block a user