Skip to content

Commit cb32318

Browse files
Jose Ramos-MendezJose Ramos-Mendez
authored andcommitted
color fixings
modified: about.html modified: assets/styles.css
1 parent 5eafbb5 commit cb32318

2 files changed

Lines changed: 56 additions & 45 deletions

File tree

about.html

Lines changed: 30 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -32,31 +32,33 @@ <h1>
3232
<main>
3333
<section class="content-placeholder" aria-labelledby="about-overview">
3434
<div class="section-inner">
35-
<h2 id="about-overview">What is OpenTOPAS?</h2>
35+
<article class="stat-card overview-card">
36+
<h2 id="about-overview">What is OpenTOPAS?</h2>
3637

37-
<div class="text-columns">
38-
<p>
39-
The NIH-funded TOPAS project made radiation therapy simulations using the Monte Carlo method easily
40-
accessible for the radiotherapy community. This repository brings the code to a new, truly open
41-
release stage called <strong>OpenTOPAS</strong>.
42-
</p>
43-
<p>
44-
OpenTOPAS wraps and extends the <a href="https://geant4.web.cern.ch" target="_blank" rel="noopener">Geant4 Simulation Toolkit</a>
45-
to provide an easier-to-use application for the medical physicist. The parameter control system lets physicists assemble and control a rich
46-
library of simulation objects—geometry components, particle sources, scorers—without writing C++ or knowing Geant4 internals.
47-
Visit the <a href="https://opentopas.readthedocs.io/en/latest" target="_blank" rel="noopener">User Guide</a> for deeper dives.
48-
</p>
49-
<p>
50-
The project was originally created out of an NIH-funded collaboration of Massachusetts General Hospital,
51-
University of California San Francisco, and SLAC National Accelerator Laboratory. Today, the UCSF and MGH teams continue
52-
to maintain and expand OpenTOPAS in partnership with the Monte Carlo community.
53-
</p>
54-
<p>
55-
OpenTOPAS supports simulation of medical applications of ionizing radiation with the Monte Carlo method.
56-
Free availability is intended to aid research by medical physicists, radiobiologists, and clinicians across all radiotherapy modalities.
57-
New users should review the key publications to explore its potential.
58-
</p>
59-
</div>
38+
<div class="text-columns">
39+
<p>
40+
The NIH-funded TOPAS project made radiation therapy simulations using the Monte Carlo method easily
41+
accessible for the radiotherapy community. This repository brings the code to a new, truly open
42+
release stage called <strong>OpenTOPAS</strong>.
43+
</p>
44+
<p>
45+
OpenTOPAS wraps and extends the <a href="https://geant4.web.cern.ch" target="_blank" rel="noopener">Geant4 Simulation Toolkit</a>
46+
to provide an easier-to-use application for the medical physicist. The parameter control system lets physicists assemble and control a rich
47+
library of simulation objects—geometry components, particle sources, scorers—without writing C++ or knowing Geant4 internals.
48+
Visit the <a href="https://opentopas.readthedocs.io/en/latest" target="_blank" rel="noopener">User Guide</a> for deeper dives.
49+
</p>
50+
<p>
51+
The project was originally created out of an NIH-funded collaboration of Massachusetts General Hospital,
52+
University of California San Francisco, and SLAC National Accelerator Laboratory. Today, the UCSF and MGH teams continue
53+
to maintain and expand OpenTOPAS in partnership with the Monte Carlo community.
54+
</p>
55+
<p>
56+
OpenTOPAS supports simulation of medical applications of ionizing radiation with the Monte Carlo method.
57+
Free availability is intended to aid research by medical physicists, radiobiologists, and clinicians across all radiotherapy modalities.
58+
New users should review the key publications to explore its potential.
59+
</p>
60+
</div>
61+
</article>
6062

6163
<div class="stat-grid">
6264
<article class="stat-card">
@@ -90,7 +92,7 @@ <h2>Collaborators</h2>
9092
</p>
9193

9294
<div class="collab-grid">
93-
<article class="collab-card">
95+
<article class="collab-card stat-card">
9496
<div>
9597
<img class="collab-logo" src="assets/img/UCSF_logo.png" alt="University of California San Francisco logo" />
9698
<h3>University of California San Francisco</h3>
@@ -105,7 +107,7 @@ <h3>University of California San Francisco</h3>
105107
</div>
106108
</article>
107109

108-
<article class="collab-card">
110+
<article class="collab-card stat-card">
109111
<div>
110112
<img class="collab-logo" src="assets/img/MGH-Harvard_logo.png" alt="Massachusetts General Hospital Harvard Medical School logo" />
111113
<h3>Massachusetts General Hospital<br />Harvard Medical School</h3>
@@ -122,7 +124,7 @@ <h3>Massachusetts General Hospital<br />Harvard Medical School</h3>
122124
</div>
123125

124126
<div class="collab-grid former-grid">
125-
<article class="collab-card">
127+
<article class="collab-card stat-card">
126128
<div>
127129
<h3>Former Contributors · UCSF</h3>
128130
<ul class="compact-list">
@@ -136,7 +138,7 @@ <h3>Former Contributors · UCSF</h3>
136138
</div>
137139
</article>
138140

139-
<article class="collab-card">
141+
<article class="collab-card stat-card">
140142
<div>
141143
<h3>Former Contributors · MGH / Harvard</h3>
142144
<ul class="compact-list">

assets/styles.css

Lines changed: 26 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -260,17 +260,29 @@ section:nth-of-type(odd) {
260260
margin-bottom: 2rem;
261261
}
262262

263-
.stat-card {
264-
padding: 1.25rem 1.5rem;
265-
border-radius: 16px;
266-
border: 1px solid var(--border);
267-
background: rgba(22, 27, 34, 0.7);
268-
}
269-
270-
.stat-card h4 {
271-
margin: 0 0 0.5rem;
272-
font-size: 1.1rem;
273-
}
263+
.stat-card {
264+
padding: 1.25rem 1.5rem;
265+
border-radius: 16px;
266+
border: 1px solid var(--border);
267+
background: rgba(22, 27, 34, 0.7);
268+
}
269+
270+
.overview-card {
271+
margin-bottom: 2.5rem;
272+
}
273+
274+
.overview-card h2 {
275+
margin: 0 0 1rem;
276+
}
277+
278+
.overview-card .text-columns {
279+
margin-bottom: 0;
280+
}
281+
282+
.stat-card h4 {
283+
margin: 0 0 0.5rem;
284+
font-size: 1.1rem;
285+
}
274286

275287
.license-card {
276288
grid-column: 1 / -1;
@@ -301,12 +313,9 @@ section:nth-of-type(odd) {
301313
}
302314

303315

304-
.collab-card {
305-
padding: 1.75rem;
306-
border: 1px solid var(--border);
307-
border-radius: 18px;
308-
background: rgba(13, 17, 23, 0.65);
309-
}
316+
.collab-card {
317+
padding: 1.75rem;
318+
}
310319

311320
.collab-card ul {
312321
margin: 0.75rem 0 0;

0 commit comments

Comments
 (0)