Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CSS file #991

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
name: Pull_request_TEMPLATE.yml
about: use this template for creation of pull requests
title: ''
labels: ''
assignees: ''



---
name: Pull Request Template


## Description
<!-- Please include a summary of the changes and the issue addressed by this pull request. -->

Fixes # (issue)

## Type of Change
<!-- Please check the options that apply: -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Documentation update

## Checklist
<!-- Please check if your PR fulfills the following requirements: -->
- [ ] I have read the contributing document.
- [ ] I have performed a self-review of my own code.
- [ ] I have commented my code, particularly in hard-to-understand areas.
- [ ] I have added necessary tests to ensure my changes are effective.
- [ ] New and existing unit tests pass locally with my changes.
- [ ] Any dependent changes have been merged and published in downstream modules.

## Screenshots (if applicable)
<!-- Please include screenshots of any visual changes if applicable. -->

## Additional Information
<!-- Add any other context or information about the pull request here. -->
---
48 changes: 48 additions & 0 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll with GitHub Pages dependencies preinstalled

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
9 changes: 9 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
title: Bobble AI
description: A mobile app built with HTML, CSS, JavaScript, and Google APIs that notifies patients of nearby hospitals, tracks ambulance ETA, and provides real-time GPS route management with traffic updates for hospitals and drivers.
show_downloads: true
google_analytics:
theme: jekyll-theme-hacker
markdown: GFM
include:
- README.md
- LICENSE
17 changes: 17 additions & 0 deletions src/css/hospital.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ body {
display: flex;
flex-direction: column;
min-height: 100vh;
line-height: 1.6;
}
html {
overflow-y: scroll;
Expand All @@ -39,16 +40,23 @@ html::-webkit-scrollbar-thumb:window-inactive {
color: #ecf0f1;
margin: 0;
font-size: 24px;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.navbar-links a {
color: #ecf0f1;
text-decoration: none;
font-size: 18px;
transition: color 0.3s ease;
padding: 10px 15px;
border-radius: 5px;
font-weight:500 ;
}

.navbar-links a:hover {
background-color: rgba(255,255,255,0.1);
transform: translateY(-2px);
color: #e67e22;
}

Expand All @@ -63,8 +71,13 @@ html::-webkit-scrollbar-thumb:window-inactive {
margin: 30px auto;
display: flex;
flex-direction: column; /* Stack elements vertically */
transition: all 0.3s ease;
align-items: center; /* Center align items */
}
.dashboard-container:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Action Buttons */
.action-buttons {
Expand All @@ -88,6 +101,9 @@ html::-webkit-scrollbar-thumb:window-inactive {
transition: background-color 0.3s ease, transform 0.2s ease,
box-shadow 0.3s ease;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
text-transform: uppercase;
letter-spacing: 1px;
background: linear-gradient(135deg, #3498db, #2980b9);
}

.action-btn:hover {
Expand All @@ -102,6 +118,7 @@ html::-webkit-scrollbar-thumb:window-inactive {
.status-container {
display: flex; /* Use flexbox to align sections side by side */
justify-content: space-between; /* Space between sections */
gap: 30px;
width: 100%; /* Full width for the container */
}

Expand Down
Loading