Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactored getting started guide #1476

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 16 commits
Commits
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
28 changes: 28 additions & 0 deletions doc/_static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,31 @@
border: 0px;
vertical-align: top;
}

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Open to a complete re-design of this :)

.card-container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: space-between;
}

.card {
flex: 1 1 calc(25% - 1rem);
border: 1px solid #ccc;
border-radius: 4px;
padding: 1rem;
text-align: center;
box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
transition: transform 0.2s;
}

.card:hover {
transform: scale(1.02);
}

.card a {
text-decoration: none;
color: inherit;
display: block;
height: 100%;
}
5 changes: 5 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@
'developer_guide/testing': 'developer_guide',
# Removal of the developer_guide folder
'developer_guide/index': 'developer_guide',
# Redirecting removed "getting started" pages to the new location
'getting_started/explorer': 'tutorials/getting_started',
'getting_started/hvplot': 'tutorials/getting_started',
'getting_started/installation': 'tutorials/getting_started',
'getting_started/interactive': 'tutorials/getting_started',
}

html_context.update( # noqa
Expand Down
147 changes: 0 additions & 147 deletions doc/getting_started/explorer.ipynb

This file was deleted.

Loading
Loading