-
Notifications
You must be signed in to change notification settings - Fork 1k
Tara Alsaidi - Lions C18 #38
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
cafedes2moulins
wants to merge
6
commits into
AdaGold:main
Choose a base branch
from
cafedes2moulins:master
base: main
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 all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
6c007ac
added css folder, style, with generic and page specific .css files
cafedes2moulins 2000a42
wave 1: page structure set up sans content
cafedes2moulins 5544fce
added basic consistent CSS styling to all pages
cafedes2moulins 3b4205a
added bio to about page and updated styling
cafedes2moulins ceeef65
completed functional requirements
cafedes2moulins cb589c2
made cosmetic changes and renamed folders to match requirements
cafedes2moulins 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.
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
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,42 @@ | ||
| #header { | ||
| grid-area: 1/1/2/6; | ||
| } | ||
|
|
||
| h1 { | ||
| color: black; | ||
| grid-area: 2/1/3/6; | ||
| font-size: 6em; | ||
| font-family: "Lucida Console", "Andale Mono", monospace; | ||
| text-align: center; | ||
| } | ||
|
|
||
| #projects { | ||
| display: flex; | ||
| grid-column: 1/6; | ||
| } | ||
|
|
||
| p { | ||
| grid-column: 2/5; | ||
| font-size: 1.5em; | ||
| font-family: "Lucida Console", "Andale Mono", monospace; | ||
|
|
||
| } | ||
|
|
||
| #quote { | ||
| font-size: 2em; | ||
| font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; | ||
| } | ||
|
|
||
| em { | ||
| color: orangered; | ||
| font-size: 3em; | ||
| display: block; | ||
| text-align: right; | ||
| font-style: normal; | ||
| font-weight: bold; | ||
|
|
||
| } | ||
|
|
||
| body { | ||
| background-color: rgb(252, 252, 245); | ||
| } |
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,35 @@ | ||
| #header { | ||
| grid-area: 1/1/3/6; | ||
| background-image: url(../assets/orange\ background.jpeg); | ||
| } | ||
|
|
||
| #color-bar { | ||
| background-color: orange; | ||
| } | ||
|
|
||
| #floral { | ||
| /* height: 63vw; */ | ||
| height: 45vw; | ||
| } | ||
|
|
||
| #name-banner { | ||
| grid-row: 3/7; | ||
| grid-column: 1/6; | ||
| display: grid; | ||
| grid-template-columns: 33% 33% 33%; | ||
| grid-template-rows: 25% 25% 25% 25%; | ||
| } | ||
|
|
||
| h1 { | ||
| color: rgb(189, 52, 2); | ||
| grid-area: 2/1/3/6; | ||
| font-size: 8em; | ||
| font-family: "Lucida Console", "Andale Mono", monospace; | ||
| text-align: center; | ||
| } | ||
|
|
||
| p { | ||
| grid-area: 3/3/4/6; | ||
| font-size: 1.5em; | ||
| font-family: "Lucida Console", "Andale Mono", monospace; | ||
| } |
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,42 @@ | ||
|
|
||
| #header { | ||
| grid-area: 1/1/2/6; | ||
| } | ||
|
|
||
| body { | ||
| background-color: rgb(252, 252, 245); | ||
| background-image: url(../assets/carpet_orange.webp); | ||
| background-position: 50% 0; | ||
| } | ||
|
|
||
| h1 { | ||
| color: black; | ||
| grid-area: 2/1/3/6; | ||
| font-size: 6em; | ||
| font-family: "Lucida Console", "Andale Mono", monospace; | ||
| text-align: center; | ||
| } | ||
|
|
||
| #projects { | ||
| display: flex; | ||
| grid-column: 2/5; | ||
| grid-row-start: 3; | ||
| flex-direction: column; | ||
| justify-content: space-between; | ||
|
|
||
| } | ||
|
|
||
| .project { | ||
| background-color: beige; | ||
| opacity: .8; | ||
| width: 60vw; | ||
| } | ||
|
|
||
| .project img{ | ||
| float: right; | ||
| } | ||
|
|
||
| em { | ||
| font-style: normal; | ||
| font-weight: bold; | ||
| } |
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,60 @@ | ||
| #main-grid { | ||
| display: grid; | ||
| grid-template-columns: repeat(5, 20%); | ||
| grid-template-rows: repeat(6, 15vw); | ||
| } | ||
|
|
||
| body{ | ||
| font-family: "Lucida Console", "Andale Mono", monospace; | ||
| } | ||
|
|
||
| #header { | ||
| grid-area: 1/1/2/2 ; | ||
| padding-right: 3vw; | ||
| background-color: orange; | ||
| } | ||
|
|
||
| ul { | ||
| list-style-type: none; | ||
| font-family: 'Courier New', Courier, monospace; | ||
| text-decoration: none; | ||
| text-align: right; | ||
| font-size: 1.5em; | ||
| font-weight: bold; | ||
| } | ||
|
|
||
| a:link { | ||
| text-decoration: none; | ||
| } | ||
|
|
||
| a:visited { | ||
| color:orangered; | ||
| text-decoration: none; | ||
| } | ||
|
|
||
| a:hover { | ||
| color:red; | ||
| text-decoration: none; | ||
| } | ||
|
|
||
| a:active { | ||
| text-decoration: none; | ||
| } | ||
|
|
||
|
|
||
| h1 { | ||
| color: fuchsia; | ||
| } | ||
|
|
||
|
|
||
| .container { | ||
| display: flex; | ||
| flex-direction: column; | ||
| justify-content: flex-end; | ||
| } | ||
|
|
||
| footer { | ||
| color: gray; | ||
| grid-area: 6/1/7/2; | ||
| } | ||
|
|
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,48 @@ | ||
| #header { | ||
| grid-area: 1/1/2/6; | ||
| } | ||
|
|
||
| h1 { | ||
| color: black; | ||
| grid-area: 2/1/3/6; | ||
| font-size: 6em; | ||
| font-family: "Lucida Console", "Andale Mono", monospace; | ||
| text-align: center; | ||
| } | ||
|
|
||
| #projects { | ||
| display: flex; | ||
| grid-column: 1/6; | ||
| } | ||
|
|
||
| #blurb { | ||
| grid-column: 2/5; | ||
| font-size: 1.5em; | ||
| font-family: "Lucida Console", "Andale Mono", monospace; | ||
|
|
||
| } | ||
|
|
||
| #quote { | ||
| font-size: 1.25em; | ||
| } | ||
|
|
||
| em { | ||
| color: orange; | ||
| font-size: 2em; | ||
| display: block; | ||
| text-align: right; | ||
| font-style: normal; | ||
| font-weight: bold; | ||
|
|
||
| } | ||
|
|
||
| body { | ||
| background-color: rgb(252, 252, 245); | ||
| } | ||
|
|
||
| img { | ||
| display: block; | ||
| margin-left: auto; | ||
| margin-right: auto; | ||
| width: 50%; | ||
| } |
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.
Image URLs should not have a space in them, it causes errors. Make sure when you add assets and name them to remove spaces!