Skip to content

Commit 56c0f46

Browse files
committed
restyle intro page
1 parent e4fd72d commit 56c0f46

1 file changed

Lines changed: 68 additions & 27 deletions

File tree

index.html

Lines changed: 68 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,25 @@
77
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
88
</head>
99
<style>
10-
.header-spacing { padding-top:50px; padding-bottom:0px; }
11-
@media (max-width:800px) { .header-spacing { padding-top:50px; padding-bottom:0px;} }
12-
.header-logo { display:block; margin:18px auto; padding:10px; max-width:400px; height:auto; object-fit:contain; border-radius:8px; box-shadow:0 2px 6px rgba(0,0,0,0.08); }
10+
.header-spacing { padding-top:80px; padding-bottom:0px; min-height: 300px; display: flex; align-items: center; justify-content: center; }
11+
@media (max-width:800px) { .header-spacing { padding-top:10px; padding-bottom:50px; min-height: 250px;} }
12+
.header-logo { display:block; margin:18px auto; padding:10px; max-width:400px; height:auto; object-fit:contain; border-radius:12px; box-shadow:0 4px 15px rgba(0,0,0,0.12); transition: transform 0.3s ease, box-shadow 0.3s ease; }
13+
.header-logo:hover { transform: translateY(-5px); box-shadow:0 8px 25px rgba(0,0,0,0.2); }
1314
@media (max-width:600px) { .header-logo { max-width:92%; padding:8px; } }
15+
16+
h2 { color: #1a4d7a; font-weight: 700; font-size: 2em; margin-top: 40px; }
17+
h3 { color: #2a5c91; font-weight: 600; }
18+
h4 { color: #0066cc; font-weight: 600; margin-bottom: 15px; }
19+
20+
.use-case-card { background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); padding: 15px ; transition: all 0.3s ease; border-top: 4px solid #0066cc; }
21+
.use-case-card:hover { box-shadow: 0 8px 20px rgba(0,102,204,0.25); transform: translateY(-4px); }
22+
23+
.query-section { background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%); border-radius: 8px; border-left: 5px solid #0099cc; }
24+
25+
ul { line-height: 1.8; }
26+
li { margin-bottom: 12px; }
27+
a { color: #0066cc; text-decoration: none; font-weight: 500; transition: color 0.2s ease; }
28+
a:hover { color: #004499; text-decoration: underline; }
1429
</style>
1530
</head>
1631
</head>
@@ -28,7 +43,7 @@
2843

2944
<!-- Header -->
3045
<header class="header-spacing" style="max-width:1500px;" id="home">
31-
<img class="header-logo" src="images/Sawgraph-Logo-transparent.png" alt="SAWGraph logo">
46+
<img class="header-logo" src="images/Sawgraph-Logo-transparent.png" alt="SAWGraph logo">
3247
</header>
3348

3449
<!-- Overview Section -->
@@ -71,36 +86,62 @@ <h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">Intended Users</
7186
</div>
7287

7388
<!-- Use Cases Section -->
74-
<div class="w3-panel w3-padding-large w3-light-green" id="use_cases">
75-
<h3 class="w3-border-bottom w3-auto w3-border-light-grey w3-padding-16">Use Cases</h3>
76-
<ul>
77-
<li><b>Understanding Testing and Testing Gaps:</b> Where have we tested and were are significant gaps?
78-
<ul>
89+
<div class="w3-padding-32" id="use_cases" style="margin-top:40px;">
90+
<h2 class="w3-border-bottom w3-border-blue w3-padding-24" style="border-bottom-width:3px!important;">Use Cases</h2>
91+
92+
<div class="w3-row w3-margin-top">
93+
<div class="w3-col m6 w3-padding-24">
94+
<div class="use-case-card w3-padding-32">
95+
<h4>🔍 Understanding Testing Gaps</h4>
96+
<p style="font-size:1.05em; color:#333; margin-bottom:15px;"><b>Where have we tested and where are significant gaps?</b></p>
97+
<ul style="color:#333; font-size:0.95em;">
7998
<li>Where have we tested for what?</li>
80-
<li>What waterbodies are near potential contamination sources?, see <a href="tracing.html">Testing Gaps Example Use Case</a> </li>
99+
<li>What waterbodies are near potential contamination sources? <a href="tracing.html">See Example</a></li>
81100
<li>What do the available test results show in a particular region?</li>
82-
<li>Where are the biggest testing gaps based on what is known so far?</li>
83-
</ul>
84-
<li><b>Assess and Map Risks:</b> Who is impacted the most?
85-
<ul>
86-
<li>Where are existing test results especially concerning and suggest prioritizing further testing or investigation?, see <a href="impacts.html">Assessing Impacts Example Use Case</a></li>
101+
<li>Where are the biggest testing gaps based on what is known?</li>
102+
</ul>
103+
</div>
104+
</div>
105+
106+
<div class="w3-col m6 w3-padding-24">
107+
<div class="use-case-card w3-padding-32">
108+
<h4>⚠️ Assess and Map Risks</h4>
109+
<p style="font-size:1.05em; color:#333; margin-bottom:15px;"><b>Who is impacted the most?</b></p>
110+
<ul style="color:#333; font-size:0.95em;">
111+
<li>Where are concerning test results suggesting prioritized investigation? <a href="impacts.html">See Example</a></li>
87112
<li>Which communities are at greatest risk?</li>
88-
</ul>
89-
<li><b>Trace Contamination:</b> Where does the PFAS end up? Where does it originate from?
90-
<ul>
91-
<li>How do specific point sources like industrial facilities, landfills, firefighting training sites, or biosolid application sites affect their surroundings?</li>
113+
</ul>
114+
</div>
115+
</div>
116+
</div>
117+
118+
<div class="w3-row">
119+
<div class="w3-col m6 w3-padding-24">
120+
<div class="use-case-card w3-padding-32">
121+
<h4>🔄 Trace Contamination</h4>
122+
<p style="font-size:1.05em; color:#333; margin-bottom:15px;"><b>Where does PFAS end up? Where does it originate?</b></p>
123+
<ul style="color:#333; font-size:0.95em;">
124+
<li>How do point sources (facilities, landfills, training sites) affect surroundings?</li>
92125
<li>What potential sources are upstream from concerning test results?</li>
93-
<li>What do the test results downstream from a potential point source show?, see <a href="testing.html">Contaminant Tracing Example Use Case</a></li>
94-
<li>What water wells downstream from or connected to sites with concerning levels should be prioritized for testing?</li>
126+
<li>What do downstream test results show? <a href="testing.html">See Example</a></li>
127+
<li>Which wells need prioritized testing?</li>
95128
</ul>
96-
<li><b>Research: What linkages does the data suggest? What warrants further research?</b>
97-
<ul>
129+
</div>
130+
</div>
131+
132+
<div class="w3-col m6 w3-padding-24">
133+
<div class="use-case-card w3-padding-32">
134+
<h4>🔬 Research Insights</h4>
135+
<p style="font-size:1.05em; color:#333; margin-bottom:15px;"><b>What linkages does the data suggest?</b></p>
136+
<ul style="color:#333; font-size:0.95em;">
98137
<li>Where are unexplained high test results?</li>
99-
<li>What agricultural practices seem to reduce PFAS exposure?</li>
100-
<li>What connections are between different PFAS substances in the environment?</li>
101-
</ul>
102-
</ul>
138+
<li>What agricultural practices reduce PFAS exposure?</li>
139+
<li>What connections exist between different PFAS substances?</li>
140+
</ul>
103141
</div>
142+
</div>
143+
</div>
144+
</div>
104145

105146
<h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">Competency questions and User queries
106147
</h3>

0 commit comments

Comments
 (0)