This repository was archived by the owner on Feb 27, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 244
completed weeks 1,2,3 #63
Open
saeed6617
wants to merge
30
commits into
CodeYourFuture:master
Choose a base branch
from
saeed6617: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
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
46db92e
completed 1-parent-child exercise
saeed6617 7bba9c3
my first commit
saeed6617 732be08
completed exercise week 2/11
saeed6617 3fec386
completed exercise week 2/12
saeed6617 a10dad5
completed exercise week2/13
saeed6617 8e82966
completed exercise week2/14
saeed6617 ae9949b
completed exercise week2/15
saeed6617 1c0211d
completed exercise week2/16
saeed6617 69ff50d
completed exercise week3/19
saeed6617 2d38f64
completed exercise week 3/22
saeed6617 7701870
completed exercise week3/23
saeed6617 3a5b0da
completed exercise week 3/24
saeed6617 5301fee
fixed the color
saeed6617 e1f73d1
fixed color second
saeed6617 40ba088
Merge purple_links branch
saeed6617 c35c658
Completed 2-html-attributes exercise
saeed6617 6a8ae9f
completed exercise week 1/3
saeed6617 dae2a89
completed exercise week 1/4,5
saeed6617 8c06e03
completed exercise week 1/7
saeed6617 49c5030
completed exercise week 1/7
saeed6617 fa2619f
completed exercise week 1/8
saeed6617 b4eeeb5
exercise week2/18 merging
saeed6617 69d27b6
completed exercise week3/20
saeed6617 88807fd
completed exercise week3/21
saeed6617 a32ce98
completed exercise week 3/26
saeed6617 c0c9103
completed exercise week3/25
saeed6617 a4658d4
completed exercise week3/27
saeed6617 96642d7
modified completed exercise week1.4
saeed6617 5b22ca9
completed exercises week 3/29
saeed6617 d1e4101
Merge pull request #1 from saeed6617/orange_links
saeed6617 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
Submodule group-project-revisions-faq
added at
dd14ce
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
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 |
---|---|---|
@@ -1 +1,10 @@ | ||
/* Add your CSS code below */ | ||
#first-message { | ||
background-color: red; | ||
} | ||
article { | ||
background-color: cadetblue; | ||
} | ||
.message--latest { | ||
background: yellow; | ||
} |
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 |
---|---|---|
@@ -1 +1,12 @@ | ||
/* Try different box model properties below */ | ||
.site-header p { | ||
color: white; | ||
margin-bottom: 1px; | ||
} | ||
.site-footer p { | ||
font-size: 12px; | ||
text-align: center; | ||
} | ||
.message--unread { | ||
box-shadow: 4px 4px 0 #dba944; | ||
} |
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 |
---|---|---|
@@ -1 +1,11 @@ | ||
/* Add your own CSS code below */ | ||
@media screen and (min-width: 768px) { | ||
.countries { | ||
columns: 2; | ||
} | ||
} | ||
@media screen and (min-width: 1200px) { | ||
.countries { | ||
columns: 3; | ||
} | ||
} |
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 |
---|---|---|
@@ -1 +1,9 @@ | ||
/* Add your own CSS code below */ | ||
.countries--first { | ||
display: flex; | ||
flex-direction: row-reverse; | ||
} | ||
.countries--third { | ||
display: flex; | ||
flex-direction: column-reverse; | ||
} |
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 |
---|---|---|
|
@@ -2,3 +2,23 @@ | |
display: flex; | ||
} | ||
/* Add your own CSS code below */ | ||
.countries--first { | ||
display: flex; | ||
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. You don't actually need |
||
flex-direction: row; | ||
align-items: center; | ||
} | ||
.countries--second { | ||
display: flex; | ||
flex-direction: row-reverse; | ||
align-items: flex-end; | ||
} | ||
.countries--third { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: flex-end; | ||
} | ||
.countries--fourth { | ||
display: flex; | ||
flex-direction: column-reverse; | ||
align-items: 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* Add your own CSS code below */ | ||
.link { | ||
color: #4491db; | ||
color: orange; | ||
font-weight: 700; | ||
text-decoration: none; | ||
} |
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
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.
Missing the "h" in "https". It's a good idea to test your changes before committing (e.g. by clicking on the link here).
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.
Also links look best if they don't include trailing space, so keep the space outside the
<a>
tag.