-
Notifications
You must be signed in to change notification settings - Fork 0
/
Projects.html
176 lines (157 loc) · 5.4 KB
/
Projects.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Remy Cohan's current neuroscience projects.">
<title>Current Project | Remy Cohan</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
line-height: 1.7;
color: #333;
background: linear-gradient(135deg, #f7f9fc, #dfe6e9);
}
header {
background: #2E86C1;
color: white;
text-align: center;
padding: 2rem 0;
font-size: 2.5rem;
font-weight: 600;
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 10px 0;
background-color: #333;
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s, transform 0.2s;
}
nav a:hover {
background-color: #555;
transform: scale(1.05);
}
.sidebar {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 0;
overflow: hidden;
background-color: #34495e;
padding: 20px 0;
box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
transition: width 0.5s ease;
}
.sidebar:hover,
.sidebar:focus {
width: 250px;
}
.sidebar h3, .sidebar a {
color: white;
margin-left: 20px;
text-decoration: none;
display: block;
margin-bottom: 20px;
transition: color 0.3s;
}
.sidebar a:hover {
color: #bdc3c7;
}
.sidebar-tab {
position: fixed;
left: 0;
top: 50%;
transform: translateY(-50%);
background-color: #34495e;
color: white;
padding: 10px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
cursor: pointer;
z-index: 1000;
transition: background-color 0.3s;
}
main {
margin-left: 0;
padding: 40px;
background-color: #ffffff;
box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
@media (max-width: 768px) {
nav {
flex-direction: column;
}
.sidebar {
position: static;
height: auto;
width: 100%;
padding: 10px 0;
display: flex;
justify-content: center;
gap: 20px;
}
.sidebar h3 {
display: none;
}
main {
margin-left: 0;
padding: 20px;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>Remy Cohan</header>
<!-- Navigation -->
<nav>
<a href="index.html">Home</a>
<a href="nifti_viewer.html">Interactive MRI Viewer</a>
<a href="simulations_ml.html">Simulation and ML</a>
<a href="plots.html">Statistics & Plotting</a>
<a href="neuro_analysis.html">Neuroimaging Analysis Scripts</a>
<a href="posters.html">Conference Posters</a>
</nav>
<!-- Sidebar Trigger -->
<div class="sidebar-tab" onclick="toggleSidebar()">☰</div>
<!-- Sidebar -->
<aside class="sidebar">
<h3>Quick Links</h3>
<a href="https://github.com/CohanR/BrainVolume_Calculation">Measure Your Brain Volume</a>
<a href="https://github.com/CohanR/HeadMesh_MRI">3D Print Your Own Brain</a>
<a href="https://github.com/CohanR">Other Cool Stuff</a>
</aside>
<!-- Main Content -->
<main>
<h1>Current Projects</h1>
<img src="images/MRI_TMS_Suite_Remy_COhan.png" alt="Neuroradiologist Remy Cohan MRI Suite" style="max-width:100%; height:auto;">
<p>Project 1 - Differential Effects of Theta Burst Stimulation on Motor and Non-Motor Cortical Regions (V1): An MRI-TMS study.</p>
<p>Project 2 - Investigating the Role of Salivary Brain-Derived Neurotrophic Factor (BDNF) in Brain Plasticity.</p>
<p>Project 3 - Investigating the Role of GABA and Glutamate in Sensory Gating: An MR Spectroscopy Study.</p>
<p>Project 4 - Evaluating the Effects of Continous Theta Burst Stimulation on Visual Processing: An MRI-TMS Study.</p>
<p>Project 5 - Evaluating the Effects of Continous Theta Burst Stimulation on Motor Evoked Potentials: An MRI-TMS Study.</p>
<p>If you are interested in participating in any of the above projects please contact me at [email protected].</p>
</main>
<script>
function toggleSidebar() {
var sidebar = document.querySelector('.sidebar');
sidebar.style.width = sidebar.style.width === '250px' ? '0' : '250px';
}
</script>
</body>
</html>