Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 459
London_10-Saliha-Popal/HTML-CSS-Challenges#255
base:main
Are you sure you want to change the base?
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "liveServer.settings.port": 5503 | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| html, body{ | ||
| background-color: #ffeeea; | ||
| display: flex; | ||
| justify-content: center; | ||
| align-items: center; | ||
| flex-direction: column; | ||
| } | ||
| #button{ | ||
| display: flex; | ||
| align-items: center; | ||
| flex-direction: row; | ||
| justify-content: center; | ||
| justify-content: space-evenly; | ||
| margin-right: 1.5rem; | ||
| } | ||
| .btn1{ | ||
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. Choose names that accurately describe the purpose or content of the element. This makes it easier for others (and your future self) to understand the code. I don't know which | ||
| background-color: teal; | ||
| padding: 10px 32px; | ||
| border-radius: 4px; | ||
| border-style: none; | ||
| color: white; | ||
| } | ||
| .btn2{ | ||
| background-color: teal; | ||
| padding: 10px 32px; | ||
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 can use relative font sizes (such as | ||
| border-radius: 4px; | ||
| border-style: none; | ||
| color: white; | ||
| } | ||
| .btn1:hover{ | ||
| background-color: cadetblue; | ||
| } | ||
| .btn2:hover{ | ||
| background-color: cadetblue; | ||
| } | ||
| h1{ | ||
| color: teal; | ||
| font-weight: lighter; | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -21,4 +21,7 @@ <h1>Two Truths, One Lie</h1> | ||
| <h3>By YOUR NAMES HERE</h3> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
| </html> | ||
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.
In general, VS Code settings are not typically pushed to remote.