Skip to content

Commit 1de8c91

Browse files
committed
Add title and styling for landmark table button in index.qmd
1 parent 5debef0 commit 1de8c91

File tree

2 files changed

+44
-2
lines changed

2 files changed

+44
-2
lines changed

index.qmd

Lines changed: 44 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# On the Transferability and Accessibility of Human Movement Data
1+
---
2+
title: "On the Transferability and Accessibility of Human Movement Data"
3+
format: html
4+
---
5+
![](pics/logo_placement.png){ width="20%" class=center }
26

37
# Introduction
48

@@ -10,6 +14,44 @@ Each motion capture method has limitations, impacting the interpretability and t
1014

1115
In this manuscript, we will briefly describe the main features of each modality and introduce a set of definitions that we will use throughout. We finally propose a scheme for unified sensor placement annotation with quantifiable levels of precision. We try to align this scheme with the currently available standards for data sharing and annotation, namely the **[Brain Imaging Data Structure (BIDS)](https://bids.neuroimaging.io/)** and the **[Hierarchical Event Descriptors (HED)](https://www.hedtags.org/)**. See [Motion-BIDS](https://bids-specification.readthedocs.io/en/stable/modality-specific-files/motion.html) and definition of body parts in [HED schema browser](https://www.hedtags.org/display_hed.html) for relevant details.
1216

17+
<style>
18+
/* Style the button to appear as a box */
19+
.centered-button {
20+
display: flex;
21+
justify-content: center;
22+
align-items: center;
23+
height: 20vh; /* Vertically center */
24+
margin: 0; /* Remove default margin */
25+
}
26+
27+
.button-box {
28+
background-color: #4CAF50; /* Replace with your desired color */
29+
color: white;
30+
padding: 15px 30px;
31+
text-align: center;
32+
text-decoration: none;
33+
font-size: 16px;
34+
font-weight: bold;
35+
border-radius: 8px;
36+
border: none;
37+
cursor: pointer;
38+
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
39+
transition: background-color 0.3s, transform 0.3s;
40+
}
41+
42+
.button-box:hover {
43+
background-color: #45a049; /* Darker green on hover */
44+
transform: scale(1.05); /* Slightly enlarges on hover */
45+
}
46+
</style>
47+
48+
<div class="centered-button">
49+
<a href="subpage.html" class="button-box">Landmark table</a>
50+
</div>
51+
52+
53+
54+
1355
# Types of Motion Capture
1456
## Optical Motion Capture (OMC)
1557

@@ -81,4 +123,4 @@ Where:
81123
- X-position, Y-position, Z-position: The sensor's position along the X, Y, and Z axes, respectively, expressed as a ratio of the axis limits.
82124
- Precision: The precision level of sensor placement (e.g., Visual Inspection, Tape Measure, 3D Scanning).
83125

84-
NOTE: This proopsal is still in discussion and we are open to feedback and suggestions. Importantly, we aim to establish a **HED partnered schemaw** to define (1) the anatomical landmarks, (2) axis limits, and (3) axis direction for each body part.
126+
NOTE: This proopsal is still in discussion and we are open to feedback and suggestions. Importantly, we aim to establish a **HED partnered schemaw** to define (1) the anatomical landmarks, (2) axis limits, and (3) axis direction for each body part.

pics/logo_placement.png

185 KB
Loading

0 commit comments

Comments
 (0)