forked from AdaGold/startrly
-
Notifications
You must be signed in to change notification settings - Fork 48
Sockets - Amy #42
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
aphunk
wants to merge
10
commits into
Ada-C11:master
Choose a base branch
from
aphunk:master
base: master
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
Sockets - Amy #42
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
15338f2
established base structure
aphunk 3401c5f
added divs around img and text in why section
aphunk 16f9638
base structures established
aphunk f481818
replaced all images
aphunk f706b51
replaced icons in Why section
aphunk cbeb258
hover state for button
aphunk 18f675d
add sticky nav, DRY'd up CSS
aphunk 0619daa
fancy gradient border
aphunk 0c2e16c
added alt text to all images
aphunk 59a0924
added classes to divs
aphunk 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
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.68 KB
...c_ligature_salla_used_as_koranic_stop_sign_isolated_form_uFDF0_icon_256x256.png
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
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,8 @@ | ||
| nav li { | ||
| display: inline-flex; | ||
| padding: 1rem; | ||
| } | ||
|
|
||
| section h1 { | ||
| align-content: center; | ||
| } |
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,178 @@ | ||
| * { | ||
| font-family: 'Space Mono', monospace; | ||
| } | ||
|
|
||
| h1 { | ||
| font-size: 48px; | ||
| } | ||
|
|
||
| h2 { | ||
| font-size: 28px; | ||
| } | ||
|
|
||
| p { | ||
| font-size: 14px; | ||
| line-height: 1.25em; | ||
| } | ||
|
|
||
| li { | ||
| list-style-type: none; | ||
| } | ||
|
|
||
| ul { | ||
| padding-inline-start: 0px; | ||
| display: flex; | ||
| flex-flow: row; | ||
| justify-content: space-between; | ||
| } | ||
|
|
||
| img { | ||
| width: 200px; | ||
| height: auto; | ||
| } | ||
|
|
||
| .container { | ||
| display: grid; | ||
| grid-template-columns: repeat(3, 1fr); | ||
| grid-row: minmax(500px, auto); | ||
| padding: 30px; | ||
| justify-content: space-around; | ||
| align-items: center; | ||
| border: 1.5em solid; | ||
| border-image: linear-gradient(to top, blue, pink) 1; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Love this gradient background! Learned something new, also your aesthetic is aspirational. |
||
| border-bottom: none; | ||
| } | ||
|
|
||
| .container>section { | ||
| grid-column: 1 / span 3; | ||
| display: flex; | ||
| flex-direction: column; | ||
| justify-content: center; | ||
| align-items: center; | ||
| margin: 50px 30px; | ||
| } | ||
|
|
||
| nav { | ||
| grid-column: span 3; | ||
| position: -webkit-sticky; | ||
| position: sticky; | ||
| top: 20px; | ||
| } | ||
|
|
||
| .wrapper li{ | ||
| display: inline; | ||
| margin-left: 2em; | ||
| } | ||
|
|
||
| .container>section.welcome { | ||
| margin-top: 5rem; | ||
| } | ||
|
|
||
| .why li { | ||
| display: flex; | ||
| padding: 1rem; | ||
| width: 33%; | ||
| } | ||
|
|
||
| .why img { | ||
| width: 20%; | ||
| height: auto; | ||
| padding: 5px; | ||
| align-self: flex-start; | ||
| padding: 16px; | ||
| float: left; | ||
| } | ||
|
|
||
| .button { | ||
| /* border: solid 2px pink; */ | ||
| border-radius: 2px; | ||
| background-color: pink; | ||
| padding: 1em 1.5em; | ||
| text-transform: uppercase; | ||
| text-decoration: none; | ||
| margin: 2rem; | ||
| } | ||
|
|
||
| a:hover { | ||
| background-color: rgb(255, 174, 187); | ||
| } | ||
|
|
||
| .team ul { | ||
| display: flex; | ||
| flex-flow: row wrap; | ||
| align-items: center; | ||
| justify-content: center | ||
| } | ||
|
|
||
| .team li { | ||
| width: 30%; | ||
| margin-bottom: 2rem; | ||
| text-align: center; | ||
| } | ||
|
|
||
| .team img { | ||
| border-radius: 100%; | ||
| border: 6px solid pink; | ||
| margin: 1rem; | ||
| } | ||
|
|
||
| .testimonial { | ||
| padding: 1rem 12rem; | ||
| } | ||
|
|
||
| .testimonial p { | ||
| align-self: flex-end; | ||
| padding-right: 3em; | ||
| font-style: italic; | ||
| font-family: 'Noto Serif', serif; | ||
| font-size: 1rem; | ||
| color: rgb(0, 60, 255); | ||
| } | ||
|
|
||
| strong { | ||
| color: rgb(255, 174, 187); | ||
| } | ||
|
|
||
| blockquote { | ||
| font-style: italic; | ||
| font-family: 'Noto Serif', serif; | ||
| font-size: 1.25em; | ||
| line-height: 175%; | ||
| } | ||
|
|
||
| .sponsors { | ||
| margin: 0 10em; | ||
| } | ||
|
|
||
| .sponsors ul { | ||
| display: flex; | ||
| flex-flow: row wrap; | ||
| justify-content: space-around; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .sponsors img { | ||
| margin: 0 20px; | ||
| } | ||
|
|
||
| footer { | ||
| background-color: blue; | ||
| grid-column: 1 / span 3; | ||
| display: flex; | ||
| flex-direction: row; | ||
| color: white; | ||
| } | ||
|
|
||
| footer div { | ||
| margin: 4rem; | ||
| } | ||
|
|
||
| footer ul { | ||
| display: flex; | ||
| flex-direction: column; | ||
| justify-content: space-around; | ||
| } | ||
|
|
||
| footer ul li { | ||
| margin-top: 5px; | ||
| } | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well done incorporating additional icons!