-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresearch.html
More file actions
186 lines (165 loc) · 5.33 KB
/
research.html
File metadata and controls
186 lines (165 loc) · 5.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Research - Cole Jerum</title>
<style>
/* reset and styling basics */
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #2c3e50;
color: #ecf0f1;
}
/* header styling */
header {
background: linear-gradient(to right, #003153, #1c5678);
color: white;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header h1 {
margin: 0;
font-size: 1.8rem;
}
nav {
display: flex;
gap: 30px;
}
nav a {
color: white;
text-decoration: none;
font-size: 1.1rem;
transition: color 0.2s ease;
padding: 5px 10px;
border-radius: 4px;
}
nav a:hover {
background-color: rgba(255,255,255,0.1);
text-decoration: none;
}
.content_2 {
max-width: 1000px;
margin: 40px auto;
border-radius: 10px;
font-size: 1.8rem;
padding: 0 20px;
text-align: center;
color: #ffffff;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
/* content styling */
.content {
max-width: 1000px;
margin: 30px auto;
padding: 25px;
background: #34495e;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
transition: transform 0.2s ease;
}
.content:hover {
transform: translateY(-2px);
}
.content h2 {
color: #ffffff;
border-bottom: 2px solid rgba(255,255,255,0.2);
padding-bottom: 10px;
margin-bottom: 25px;
font-size: 1.4rem;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin-bottom: 15px;
padding: 8px 0;
transition: transform 0.2s ease;
}
ul li:hover {
transform: translateX(5px);
}
ul li a {
color: #4fd1c5;
text-decoration: none;
font-size: 1.2rem;
transition: color 0.2s ease;
display: block;
}
ul li a:hover {
color: #81e6d9;
}
.clickable-header {
color: #4fd1c5;
text-decoration: none;
font-size: 1.5rem;
display: inline-block;
margin-bottom: 20px;
transition: color 0.2s ease;
}
.clickable-header:hover {
color: #81e6d9;
cursor: pointer;
}
/* Responsive design */
@media (max-width: 768px) {
.content, .content_2 {
margin: 20px;
padding: 15px;
}
header {
flex-direction: column;
text-align: center;
padding: 10px;
}
nav {
margin-top: 10px;
}
.content_2 {
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<header>
<h1>Cole Jerum</h1>
<nav>
<a href="index.html">About</a>
<a href="research.html">Research</a>
<a href="index.html#contact">Contact</a>
</nav>
</header>
<div class="content_2">
<h2>Some of My Research at the XSPL (Extreme State Physics Laboratory)</h2>
</div>
<div class="content">
<h2>Projects w/ Documentation (Click for In-Depth Overview)</h2>
<ul>
<li><a href="project2.html">Designing and Implementing Teleoperated High-precision Optical Repositioner (<b>THOR</b>)</a></li>
<li><a href="project3.html">THOR: Circuitboard design</a></li>
</ul>
</div>
<div class="content">
<h2>Programs w/ Documentation (Click for Code)</h2>
<ul>
<li><a href="VTKs_to_Cross Section_for_website.html">Radial Slice Generator: From Z-Pinch to PERSEUS-Compatible Cross-Sections (Python)</a></li>
<li><a href="read_vtk_for_website.html">VTK File Reader: Combining Grids and Extracting Data with PyVista (Python)</a></li>
<li><a href="project5.html">Delay Control for Dual Laser System (Python)</a></li>
<li><a href="fortran1.html">Placeholder But Soon To Be Some Sort of Proof That I Have Experience Coding in Fortran (Fortran)</a></li>
</ul>
</div>
<div class="content">
<h2>Undocumented Projects</h2>
<ul>
<li><a href="project1.html">Directional Plasma Resistivity in PERSEUS/LASSIE (In Progress)</a></li>
<li><a href="project4.html">Electron Density of a Laser-Produced-Plasma With Interferometry</a></li>
</ul>
</div>
</body>
</html>