forked from AdaGold/group-fansite
-
Notifications
You must be signed in to change notification settings - Fork 155
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
Cheetahs-Wanjun Lan #97
Open
wjlan
wants to merge
9
commits into
Ada-C18:master
Choose a base branch
from
wjlan: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 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
78b128a
homepage outline with css and flexbox
wjlan 237f23d
body font-size adjustment
wjlan f80bb07
Draft page About with Grid
wjlan e3c024b
minor change about Home page
wjlan 58e9b61
About page completed
wjlan a7b576f
Portolio drafted
wjlan 2181353
Basically completed
wjlan 32dd774
checked by HTML validator
wjlan 6fc2a3d
adjust the relative view
wjlan 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
Next
Next commit
homepage outline with css and flexbox
- Loading branch information
commit 78b128a85c3ddb2cdf5e82ad754262d479143fa9
There are no files selected for viewing
This file contains 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,3 @@ | ||
{ | ||
"liveServer.settings.port": 5502 | ||
} |
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 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 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,79 @@ | ||
#home-header { | ||
font-size: 2.5rem; | ||
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; | ||
color:rgb(106, 135, 135); | ||
text-align: center; | ||
padding:40px; | ||
padding-bottom: 80px; | ||
|
||
background-image: url(https://images.rawpixel.com/image_1000/czNmcy1wcml2YXRlL3Jhd3BpeGVsX2ltYWdlcy93ZWJzaXRlX2NvbnRlbnQvbHIvcm0zMDUtbnVubnktMDZhLWwuanBn.jpg); | ||
background-origin: content-box; | ||
} | ||
|
||
|
||
header ul { | ||
list-style-type: none; | ||
} | ||
|
||
body{ | ||
font-size:20px; | ||
line-height:1.75; | ||
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif | ||
} | ||
|
||
#Wanjun_photo{ | ||
width: 200px; | ||
height: 210px; | ||
border-radius: 70%; | ||
} | ||
|
||
a { | ||
color:dimgray; | ||
} | ||
|
||
a:hover { | ||
color:lightgray; | ||
} | ||
|
||
a { | ||
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. There is already an |
||
text-decoration: None; | ||
} | ||
|
||
.home-container { | ||
width: 100%; | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
justify-content: space-around; | ||
align-items: center; | ||
font-size: 2em; | ||
padding-bottom: 30px; | ||
} | ||
|
||
.main-container { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
justify-content: space-around; | ||
align-items: center; | ||
} | ||
|
||
|
||
.main-container>div:nth-child(2) { | ||
color:rgb(47, 62, 148); | ||
font-size: 1em; | ||
} | ||
|
||
footer { | ||
position: relative; | ||
height: 300px; | ||
width: 95%; | ||
} | ||
p.copyright { | ||
position: absolute; | ||
width: 95%; | ||
line-height: 10px; | ||
text-align: right; | ||
bottom:0; | ||
} | ||
|
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.
This link also does not work because it is an absolute path instead of a relative path. Please see the comment above about absolute vs relative.