Skip to content

Commit 7a0d7ab

Browse files
committed
Updated website content
1 parent 2086da2 commit 7a0d7ab

File tree

6 files changed

+70
-171
lines changed

6 files changed

+70
-171
lines changed

Horbitals.html

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -5,62 +5,6 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Hydrogen Wavefunction Eigenstates - Project Details</title>
77
<link rel="stylesheet" href="css/styles.css">
8-
<style>
9-
/* Additional styles specific to this page */
10-
.detail-container {
11-
max-width: 1200px;
12-
margin: 80px auto 0;
13-
padding: 2rem;
14-
}
15-
16-
.back-link {
17-
display: inline-block;
18-
margin-bottom: 2rem;
19-
color: var(--primary-color);
20-
text-decoration: none;
21-
}
22-
23-
.back-link:hover {
24-
text-decoration: underline;
25-
}
26-
27-
.project-header {
28-
display: flex;
29-
justify-content: space-between;
30-
align-items: center;
31-
margin-bottom: 2rem;
32-
}
33-
34-
.github-link {
35-
display: inline-flex;
36-
align-items: center;
37-
gap: 0.5rem;
38-
padding: 0.75rem 1.5rem;
39-
background: var(--dark);
40-
color: white;
41-
text-decoration: none;
42-
border-radius: 8px;
43-
transition: transform 0.3s ease;
44-
}
45-
46-
.github-link:hover {
47-
transform: translateY(-2px);
48-
}
49-
50-
.detail-content {
51-
margin-top: 3rem;
52-
}
53-
54-
.detail-content h2 {
55-
margin: 2rem 0 1rem;
56-
color: var(--dark);
57-
}
58-
59-
.detail-content p {
60-
margin-bottom: 1.5rem;
61-
line-height: 1.6;
62-
}
63-
</style>
648
</head>
659
<body>
6610
<div class="detail-container">

blackhole.html

Lines changed: 2 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -5,62 +5,6 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Black Hole Light Ray Simulation - Project Details</title>
77
<link rel="stylesheet" href="css/styles.css">
8-
<style>
9-
/* Additional styles specific to this page */
10-
.detail-container {
11-
max-width: 1200px;
12-
margin: 80px auto 0;
13-
padding: 2rem;
14-
}
15-
16-
.back-link {
17-
display: inline-block;
18-
margin-bottom: 2rem;
19-
color: var(--primary-color);
20-
text-decoration: none;
21-
}
22-
23-
.back-link:hover {
24-
text-decoration: underline;
25-
}
26-
27-
.project-header {
28-
display: flex;
29-
justify-content: space-between;
30-
align-items: center;
31-
margin-bottom: 2rem;
32-
}
33-
34-
.github-link {
35-
display: inline-flex;
36-
align-items: center;
37-
gap: 0.5rem;
38-
padding: 0.75rem 1.5rem;
39-
background: var(--dark);
40-
color: white;
41-
text-decoration: none;
42-
border-radius: 8px;
43-
transition: transform 0.3s ease;
44-
}
45-
46-
.github-link:hover {
47-
transform: translateY(-2px);
48-
}
49-
50-
.detail-content {
51-
margin-top: 3rem;
52-
}
53-
54-
.detail-content h2 {
55-
margin: 2rem 0 1rem;
56-
color: var(--dark);
57-
}
58-
59-
.detail-content p {
60-
margin-bottom: 1.5rem;
61-
line-height: 1.6;
62-
}
63-
</style>
648
</head>
659
<body>
6610
<div class="detail-container">
@@ -73,7 +17,7 @@ <h1>Black Hole Light Ray Simulation</h1>
7317
target="_blank">View on GitHub</a>
7418
</div>
7519

76-
<video class="project-video" controls>
20+
<video class="project-video" width="355" height="353" autoplay loop muted playsinline>
7721
<source src="media/Black Hole Sim.mp4" type="video/mp4">
7822
Your browser does not support the video tag.
7923
</video>
@@ -92,7 +36,7 @@ <h2>Key Features</h2>
9236
- Real-time manipulation of black hole parameters</p>
9337

9438
<h2>Technical Implementation</h2>
95-
<p>Built using Python with NumPy for calculations and Pygame for visualization.
39+
<p>Built using Python with NumPy for calculations and Matplotlib for visualization.
9640
The simulation solves the geodesic equations in curved spacetime to accurately
9741
model light behavior in strong gravitational fields.</p>
9842

css/styles.css

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,73 @@ body {
110110
animation: fadeInUp 1s 0.3s forwards;
111111
}
112112

113+
/* Detail Container Styles (for individual project pages) */
114+
.detail-container {
115+
min-height: 100vh;
116+
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
117+
display: flex;
118+
flex-direction: column;
119+
align-items: center;
120+
}
121+
122+
.detail-content {
123+
background: rgba(255, 255, 255, 0.95);
124+
border-radius: 15px;
125+
padding: 2rem;
126+
width: 100%;
127+
max-width: 1200px;
128+
margin-bottom: 2rem;
129+
color: var(--dark);
130+
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
131+
}
132+
133+
/* Back Link Styles */
134+
.back-link {
135+
display: block;
136+
margin-bottom: 2rem;
137+
color: white;
138+
text-decoration: none;
139+
padding: 0.5rem 1rem;
140+
border-radius: 5px;
141+
transition: background-color 0.3s ease;
142+
align-self: flex-start;
143+
}
144+
145+
.back-link:hover {
146+
background: rgba(255, 255, 255, 0.2);
147+
}
148+
149+
/* Project Header Styles */
150+
.project-header {
151+
width: 100%;
152+
max-width: 1200px;
153+
text-align: center;
154+
margin: 0 0 2rem 0;
155+
color: white;
156+
}
157+
158+
.project-header h1 {
159+
font-size: 3rem;
160+
margin-bottom: 1rem;
161+
color: white;
162+
}
163+
164+
.github-link {
165+
color: white;
166+
text-decoration: none;
167+
padding: 0.5rem 1rem;
168+
border: 2px solid white;
169+
border-radius: 5px;
170+
transition: all 0.3s ease;
171+
display: inline-block;
172+
}
173+
174+
.github-link:hover {
175+
background: white;
176+
color: var(--primary-color);
177+
}
178+
179+
113180
/* Section Styles */
114181
.section {
115182
padding: 6rem 0;

engine.html

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -5,62 +5,6 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Hydrogen Wavefunction Eigenstates - Project Details</title>
77
<link rel="stylesheet" href="css/styles.css">
8-
<style>
9-
/* Additional styles specific to this page */
10-
.detail-container {
11-
max-width: 1200px;
12-
margin: 80px auto 0;
13-
padding: 2rem;
14-
}
15-
16-
.back-link {
17-
display: inline-block;
18-
margin-bottom: 2rem;
19-
color: var(--primary-color);
20-
text-decoration: none;
21-
}
22-
23-
.back-link:hover {
24-
text-decoration: underline;
25-
}
26-
27-
.project-header {
28-
display: flex;
29-
justify-content: space-between;
30-
align-items: center;
31-
margin-bottom: 2rem;
32-
}
33-
34-
.github-link {
35-
display: inline-flex;
36-
align-items: center;
37-
gap: 0.5rem;
38-
padding: 0.75rem 1.5rem;
39-
background: var(--dark);
40-
color: white;
41-
text-decoration: none;
42-
border-radius: 8px;
43-
transition: transform 0.3s ease;
44-
}
45-
46-
.github-link:hover {
47-
transform: translateY(-2px);
48-
}
49-
50-
.detail-content {
51-
margin-top: 3rem;
52-
}
53-
54-
.detail-content h2 {
55-
margin: 2rem 0 1rem;
56-
color: var(--dark);
57-
}
58-
59-
.detail-content p {
60-
margin-bottom: 1.5rem;
61-
line-height: 1.6;
62-
}
63-
</style>
648
</head>
659
<body>
6610
<div class="detail-container">

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ <h4><a href="engine.html" class="project-link">3D Physics Game Engine (WIP) </a>
5252
</div>
5353

5454
<div class="simulation-item">
55-
<video class="project-video" width="600" height="595" autoplay loop muted playsinline>
55+
<video class="project-video" width="355" height="353" autoplay loop muted playsinline>
5656
<source src="media/Black Hole Sim.mp4" type="video/mp4">
5757
Your browser does not support the video tag.
5858
</video>

media/Black Hole Sim.mp4

-1.6 MB
Binary file not shown.

0 commit comments

Comments
 (0)