-
Notifications
You must be signed in to change notification settings - Fork 293
feat!: monorepo landing page #1868
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
Merged
Merged
Changes from 3 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
c57d194
feat!: monorepo landing page
samfreund b590cc4
ugh linting
samfreund 950bd5e
add fonts and videos to styleguide ignore
samfreund a84da24
format everything
samfreund 855b3e0
remove videos 2, electric boogaloo
samfreund 9c32b1a
I think that does it
samfreund 2de1b2a
acutally, I don't think we need that
samfreund 01f1a1a
Merge branch 'PhotonVision:main' into monorepo-website
samfreund 7e501bd
remove port variable
samfreund 26ea57b
update to use extant secrets
samfreund dcb6a71
remove user
samfreund 1adc177
Update website.yml
samfreund dc9891b
Update website.yml
samfreund 96d6b0f
update workflow
samfreund 8be70ef
Update website.yml
samfreund e35bc6b
remove fonts and stuff from styleguide, add back later
samfreund 177a7dc
monorepo
samfreund 9961278
Merge branch 'monorepo-website' of github.com:samfreund/photonvision …
samfreund 42d0b10
styleguide
samfreund b9906d0
Merge branch 'main' into monorepo-website
samfreund fdbdbbe
Update website.yml
samfreund 0f1fc22
linterrrrrr
samfreund 2528680
Merge branch 'monorepo-website' of github.com:samfreund/photonvision …
samfreund 6a6c3e1
update in-action video
samfreund 6c43d4a
alright, that's it
samfreund 53ef498
Update main.css
samfreund 3200408
lint
samfreund 4facf63
Merge branch 'monorepo-website' of github.com:samfreund/photonvision …
samfreund 3cf111b
oops, forgot to add those
samfreund File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| name: Website Build | ||
|
|
||
| on: | ||
| push: | ||
| # For now, run on all commits to main | ||
| branches: [ main ] | ||
| # and also all tags starting with v | ||
| tags: | ||
| - 'v*' | ||
|
|
||
| jobs: | ||
| rsync: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: up9cloud/action-rsync@v1.4 | ||
| env: | ||
| HOST: ${{ secrets.SSH_HOST }} | ||
| USER: ${{ secrets.SSH_USERNAME }} | ||
| KEY: ${{secrets.DEPLOY_SSH_KEY}} | ||
| PORT: ${{ secrets.SSH_PORT }} | ||
| SOURCE: ./website/ | ||
mcm001 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| TARGET: /var/www/html/photonvision-website/ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| # photovision-website | ||
| PhotonVision's landing page! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,110 @@ | ||
| .spidochetube { | ||
| max-width: 960px; | ||
| margin: auto; | ||
| } | ||
|
|
||
| .spidochetube_inner { | ||
| float: left; | ||
| background-color: #111; | ||
| padding: 10px; | ||
| width: 100%; | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| #spidochetube_player { | ||
| width: 68.0852%; | ||
| float: left; | ||
| } | ||
|
|
||
| #player { | ||
| width: 100%; | ||
| } | ||
|
|
||
| #spidochetube_list { | ||
| overflow: auto; | ||
| float: right; | ||
| -webkit-overflow-scrolling: touch; | ||
| width: 31%; | ||
| background-color: #111; | ||
| padding: 5px 0; | ||
| border: 1px solid #000; | ||
| border-left: none; | ||
| margin: 0; | ||
| padding-top: 38%; | ||
| height: 0; | ||
| } | ||
|
|
||
| #spidochetube_list li { | ||
| border-top: 1px solid #1F1F1F; | ||
| border-bottom: 1px solid #000; | ||
| display: block; | ||
| margin-left: 12px; | ||
| padding: 6px 0; | ||
| cursor: pointer; | ||
| background-color: #111; | ||
| position: relative; | ||
| } | ||
|
|
||
| #spidochetube_list li:first-child { | ||
| border-top: none | ||
| } | ||
|
|
||
| #spidochetube_list li:last-child { | ||
| border-bottom: none | ||
| } | ||
|
|
||
| #spidochetube_list li:hover { | ||
| background: #0F0F0F; | ||
| } | ||
|
|
||
| #spidochetube_list li span { | ||
| color: #999; | ||
| display: inline-block; | ||
| width: 50%; | ||
| margin-left: 4%; | ||
| margin-right: 3%; | ||
| font-size: 12px; | ||
| word-break: break-word; | ||
| } | ||
|
|
||
| #spidochetube_list li img { | ||
| vertical-align: top; | ||
| width: 43%; | ||
| } | ||
|
|
||
| #spidochetube_list li.spidochetube_current, #spidochetube_list li:hover.spidochetube_current { | ||
| background-color: #202325; | ||
| } | ||
|
|
||
| #spidochetube_list li.spidochetube_current span { | ||
| color: #fff; | ||
| } | ||
|
|
||
| ul#spidochetube_list li:first-child { | ||
| margin-top: -120%; | ||
| } | ||
|
|
||
| #spidochetube_list li a { | ||
| width: 100%; | ||
| display: block; | ||
| margin: 0; | ||
| } | ||
|
|
||
| @media (max-width: 480px){ | ||
|
|
||
| #spidochetube_list li{ | ||
| margin-left:5px; | ||
| margin-right:5px; | ||
| } | ||
|
|
||
| #spidochetube_list li img { | ||
| width: 100%; | ||
| } | ||
|
|
||
| #spidochetube_list li span { | ||
| width: 100%; | ||
| margin-left: 0; | ||
| margin-right: 0; | ||
| margin-top: 4px; | ||
| } | ||
| } |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.