Skip to content
Merged

Sinc #162

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
711c4af
docs: Add comprehensive documentation to codebase
google-labs-jules[bot] Sep 28, 2025
160d102
Merge pull request #159 from sccn/main
bruAristimunha Oct 1, 2025
d925e40
feat: Add time estimation for tutorials
google-labs-jules[bot] Oct 2, 2025
c0f8a80
feat: Add time estimation for tutorials
google-labs-jules[bot] Oct 2, 2025
9e56c2d
refactor: Use Sphinx templating for time estimation
google-labs-jules[bot] Oct 2, 2025
dd15b62
updating the logo
bruAristimunha Oct 4, 2025
9bd538a
updating the css
bruAristimunha Oct 4, 2025
9cfd02c
updating the vectorize version
bruAristimunha Oct 4, 2025
6fbc094
fixing the logo
bruAristimunha Oct 4, 2025
6731ec6
updating the font size
bruAristimunha Oct 4, 2025
f29622f
fix the logo
bruAristimunha Oct 4, 2025
5d174c1
updating the svg
bruAristimunha Oct 4, 2025
ebb6810
updating the plots
bruAristimunha Oct 4, 2025
bc5fe4a
Merge branch 'develop' into fixing_logo
bruAristimunha Oct 4, 2025
be4feaf
pre-commit
bruAristimunha Oct 4, 2025
4118297
Merge pull request #161 from sccn/fixing_logo
bruAristimunha Oct 4, 2025
f9c4519
updating and pushing
bruAristimunha Oct 4, 2025
2530cfa
Merge branch 'develop' into feature/time-estimation
bruAristimunha Oct 4, 2025
cc43ec0
updating the eeg2025
bruAristimunha Oct 4, 2025
21fd040
fixing pre-commit
bruAristimunha Oct 4, 2025
c0f3d04
Merge branch 'develop' into doc-comprehensive-documentation
bruAristimunha Oct 4, 2025
bb94115
Merge pull request #160 from sccn/feature/time-estimation
bruAristimunha Oct 4, 2025
7298932
Merge branch 'develop' into doc-comprehensive-documentation
bruAristimunha Oct 4, 2025
5e368f6
Merge pull request #154 from sccn/doc-comprehensive-documentation
bruAristimunha Oct 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/plot_dataset/bubble.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def generate_dataset_bubble(

fig.update_layout(
height=height,
width=max_width,
width=None,
margin=dict(l=60, r=40, t=80, b=60),
template="plotly_white",
legend=dict(
Expand Down
4 changes: 2 additions & 2 deletions docs/plot_dataset/ridgeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ def generate_modality_ridgeline(
date_stamp = datetime.now().strftime("%d/%m/%Y")
fig.update_layout(
height=kde_height,
width=1200,
width=None,
autosize=True,
template="plotly_white",
xaxis=dict(
type="log",
Expand Down Expand Up @@ -169,7 +170,6 @@ def generate_modality_ridgeline(
yanchor="top",
font=dict(size=20),
),
autosize=True,
font=dict(size=16),
)

Expand Down
141 changes: 125 additions & 16 deletions docs/source/_static/custom.css
Original file line number Diff line number Diff line change
@@ -1,42 +1,86 @@

/* Spacing + sizing for the two homepage logos */
table.logos-row td {
padding: 0 16px !important; /* horizontal gap between logos */
vertical-align: middle;
}
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&display=swap");

table.logos-row img.logo.mainlogo {
.eegdash-hero { text-align:center; margin: 0 0 1.25rem; }

.eegdash-hero__title{
display: block;
margin: 0 auto;
width: 100%;
max-height: 90px; /* adjust as needed */
object-fit: contain;
text-align: center;
font-family:"Sora", var(--pst-font-family-base, system-ui), sans-serif;
font-weight:800;
font-size:clamp(3.6rem, 9vw, 5.9rem);
line-height:1.08;
margin:0 0 .85rem;
color:var(--pst-color-text, #111827);
letter-spacing:.01em;
}

html[data-theme="light"] .eegdash-hero__title {
color:#0f172a;
}

html[data-theme="dark"] .eegdash-hero__title {
color:#f9fafb;
text-shadow:0 3px 12px rgba(0,0,0,0.45);
}

.eegdash-hero img.logo.mainlogo{ display:block; margin:0 auto; }

/* Core API title with icon */
h1#core-api {
display: inline-flex;
align-items: center;
gap: 0.85rem;
font-weight: 800;
}

h1#core-api::before {
content: "\f2db";
font-family: "Font Awesome 6 Free";
font-weight: 900;
font-size: 1.75rem;
line-height: 1;
color: var(--sd-color-primary, #0a6fb6);
}

h1#core-api .headerlink {
margin-left: 0.6rem;
}

/* Spacing + sizing for the two homepage logos */
table.logos-row {
border-collapse: separate !important;
border-spacing: 20px 0 !important; /* horizontal gap between cells */
}
/* spacing between logos (table cells) */
table.logos-row {
border-collapse: separate !important;
border-spacing: 20px 0 !important; /* adjust gap */
background: transparent !important;
box-shadow: none !important;
border: 0 !important;
}

/* Remove grey/zebra background from the logos table (pydata theme tables) */
table.logos-row,
/* remove zebra/row styling from PyData theme */
table.logos-row tbody tr,
table.logos-row td,
table.logos-row th {
background: transparent !important;
box-shadow: none !important;
border: 0 !important;
}

/* Also disable zebra striping specifically for this table */
table.logos-row tbody tr:nth-child(odd) td,
table.logos-row tbody tr:nth-child(odd) th {
background: transparent !important;
}

/* Keep the horizontal gap and sizing */
/* cell alignment (light padding optional now) */
table.logos-row td {
padding: 0 16px !important;
padding: 0 8px !important; /* optional, can be 0 */
vertical-align: middle;
}

/* logo sizing */
table.logos-row img.logo.mainlogo {
display: block;
margin: 0 auto;
Expand All @@ -45,6 +89,35 @@ table.logos-row img.logo.mainlogo {
object-fit: contain;
}

/* small screens: shrink max-height a bit */
@media (max-width: 640px) {
table.logos-row img.logo.mainlogo { max-height: 70px; }
}

.logos-flex {
display: flex;
flex-wrap: wrap; /* wraps on small screens */
justify-content: center; /* <-- centers the whole group */
align-items: center;
gap: 30px 24px; /* row x column space between logos */
margin: 12px 0 24px;
}

/* center each image itself */
.logos-flex img.flex-logo {
display: block;
margin: 0 auto; /* <-- centers each image within its slot */
height: auto;
max-height: 110px; /* optional cap */
}


/* Small screens */
@media (max-width: 640px) {
.logos-flex { gap: 16px; }
.logos-flex img.flex-logo { max-height: 80px; }
}

/* -------------------------------------------------------------
Dataset summary table: increase font size slightly and
align with PyData theme base font size.
Expand Down Expand Up @@ -551,3 +624,39 @@ html.dataset-summary-page .bd-main .bd-content .bd-article-container {
max-width: 100%;
}
}

/* Inline reading time badge for tutorials */
.eegdash-reading-time {
display: inline-flex;
align-items: baseline;
gap: 0.4rem;
margin: 0.5rem 0 1.25rem;
padding: 0.35rem 0.75rem;
border-radius: 0.65rem;
background: var(--sd-color-surface-secondary, rgba(10, 111, 182, 0.08));
color: var(--pst-color-text-muted, #4b5563);
font-size: 0.95rem;
font-weight: 500;
}

.eegdash-reading-time__label {
text-transform: uppercase;
letter-spacing: 0.08em;
font-size: 0.75rem;
font-weight: 600;
color: var(--sd-color-primary, #0a6fb6);
}

.eegdash-reading-time__value {
font-weight: 700;
color: var(--pst-color-text, #111827);
}

html[data-theme="dark"] .eegdash-reading-time {
background: rgba(15, 118, 184, 0.22);
color: var(--pst-color-text-muted, #d1d5db);
}

html[data-theme="dark"] .eegdash-reading-time__value {
color: var(--pst-color-text, #f9fafb);
}
Binary file removed docs/source/_static/eegdash_long.png
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
100 changes: 100 additions & 0 deletions docs/source/_static/eegdash_long_white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/source/_static/logos/bgu.png
Binary file not shown.
101 changes: 101 additions & 0 deletions docs/source/_static/logos/bgu_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/source/_static/logos/bgu_white.png
Binary file not shown.
91 changes: 91 additions & 0 deletions docs/source/_static/logos/bgu_white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading