-
Notifications
You must be signed in to change notification settings - Fork 34
Solved Issue #68 [FEATURE] Tablet Mode for Teams Section [GSSoC'23] #110
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
Open
vishnu9865
wants to merge
9
commits into
Deveimer:Development
Choose a base branch
from
vishnu9865:VOVOCA-68
base: Development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
b68b4c5
feat: enable Tablet Mode for Teams Section
vishnu9865 e92a59e
fix: modify tablet function
vishnu9865 c9d4f6f
Merge branch 'Deveimer:Development' into VOVOCA-68
vishnu9865 d7d830b
fix: Remove console logs
vishnu9865 71acf21
Merge branch 'VOVOCA-68' of https://github.com/vishnu9865/vovoca-fron…
vishnu9865 3cd1745
fix: edit navbar for tablet mode.
vishnu9865 0dd74b6
fix: further modify Navbar
vishnu9865 df7c6bc
fix: update navbar design
vishnu9865 6f8cf23
fix: remove dashboard icon in tablet mode
vishnu9865 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
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,139 @@ | ||
| .container { | ||
| width: 100%; | ||
| padding-right: 4rem; | ||
| padding-left: 4rem; | ||
| margin-bottom: 3em; | ||
| /* height: 100vh; */ | ||
| } | ||
|
|
||
| .testimonial { | ||
| padding: 1rem; | ||
| flex-basis: 30rem; | ||
| flex-grow: 0; | ||
| flex-shrink: 0; | ||
| display: flex; | ||
| flex-flow: column; | ||
| } | ||
|
|
||
| .testimonial__heading { | ||
| text-align: center; | ||
| font-size: 3rem; | ||
| color: #d7e1ec; | ||
| } | ||
|
|
||
| .testimonial__row__1 { | ||
| /* display: grid; | ||
| grid-template-columns: auto auto auto; | ||
| grid-template-rows: masonry; */ | ||
| display: flex; | ||
| justify-content: space-evenly; | ||
| align-items: stretch; | ||
| flex-wrap: wrap; | ||
| gap: 1rem; | ||
| } | ||
|
|
||
| .testimonial__row__2 { | ||
| display: flex; | ||
| flex-wrap: wrap; | ||
| flex-direction: row; | ||
| justify-content: center; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .testimonial__row__2 .testimonial { | ||
| padding: 2rem; | ||
| flex-basis: auto; | ||
| } | ||
|
|
||
| .testimonial__article { | ||
| padding: 1.25rem; | ||
| border: 1px solid transparent; | ||
| border-radius: 1.25rem; | ||
| background-image: linear-gradient( | ||
| 154deg, | ||
| #3a3e41 0%, | ||
| #2a2d30 49%, | ||
| #242628 100% | ||
| ), | ||
| linear-gradient(160deg, #434b54 1%, #2a2c2f 45%, #191b1e 75%); | ||
| background-clip: padding-box, border-box; | ||
| background-origin: padding-box, border-box; | ||
| box-shadow: 1.875rem 1.5625rem 1.375rem rgb(21 22 24 / 24%), | ||
| -4px -4px 15px rgb(195 200 205 / 4%); | ||
| display: flex; | ||
| flex: 1; | ||
| } | ||
|
|
||
| .testimonial__img { | ||
| padding-left: 2rem; | ||
| padding-right: 2rem; | ||
| } | ||
| .developer__img{ | ||
| padding-left: 2rem; | ||
| padding-right: 1rem; | ||
| border-radius: 50%; | ||
| width: 4.75rem; | ||
| height: 3.25rem; | ||
| background: linear-gradient(-32deg, #1a1d21 3%, #393d42 44% 56%, #1a1d21 97%) | ||
| 0% 0%/200% 200%; | ||
| box-shadow: 4px 4px 18px rgb(0 0 0 / 40%), | ||
| -4px -2px 16px rgb(195 200 205 / 8%); | ||
| margin: 5%; | ||
| object-fit: cover; | ||
| } | ||
| .contributor__img{ | ||
| padding-left: 2rem; | ||
| padding-right: 1rem; | ||
| border-radius: 50%; | ||
| width: 4.75rem; | ||
| height: 4.5rem; | ||
| background: linear-gradient(-32deg, #1a1d21 3%, #393d42 44% 56%, #1a1d21 97%) | ||
| 0% 0%/200% 200%; | ||
| box-shadow: 4px 4px 18px rgb(0 0 0 / 40%), | ||
| -4px -2px 16px rgb(195 200 205 / 8%); | ||
| margin: 5%; | ||
| object-fit: cover; | ||
| } | ||
| .testimonial__content > h5 { | ||
| color: #d7e1ec; | ||
| line-height: 1.7; | ||
| font-weight: 500; | ||
| letter-spacing: 0; | ||
| } | ||
|
|
||
| .testimonial__content > p { | ||
| color: #a0a1ac; | ||
| } | ||
|
|
||
| .testimonial__content > span { | ||
| color: #d7e1ec; | ||
| } | ||
|
|
||
| @media (min-width: 1300px) { | ||
| .testimonial{ | ||
| padding: 0.5em; | ||
| } | ||
| } | ||
|
|
||
| @media only screen and (max-width: 600px) { | ||
| .testimonial__row__1 { | ||
| display: block; | ||
| } | ||
| .testimonial{ | ||
| padding: 1em; | ||
| } | ||
| /* .testimonial__row__2 { | ||
| display: block; | ||
| } */ | ||
| .testimonial__content > p { | ||
| width: 105%; | ||
| margin-top: 5px; | ||
| } | ||
| .container { | ||
| padding-right: 0; | ||
| padding-left: 0; | ||
| } | ||
| .testimonial__heading { | ||
| font-size: 2rem; | ||
| } | ||
| } |
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.