diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 5828616..582a8a9 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,7 +33,7 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v2 - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-artifact@v3 with: # Upload entire repository path: '.' diff --git a/index.css b/index.css index 3d65326..6d1debb 100644 --- a/index.css +++ b/index.css @@ -118,3 +118,10 @@ html, body { /* Add more styles for larger screens as needed */ } + +/* New hover effect for buttons */ +button:hover { + background-color: #555; /* Darker shade for hover effect */ + color: #fff; /* White text on hover */ + cursor: pointer; /* Pointer cursor on hover */ +}