Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Sync with Canvas Pre-Work that Contains HTML
name: Sync with Canvas HTML

on:
push:
Expand All @@ -25,7 +25,7 @@ jobs:

# Secret stored in learn-co-curriculum Settings/Secrets
- name: Sync from .canvas file
run: github-to-canvas -a -lr --forkable --prework --contains-html
run: github-to-canvas -a -lr --forkable --contains-html
env:
CANVAS_API_KEY: ${{ secrets.CANVAS_API_KEY }}
CANVAS_API_PATH: ${{ secrets.CANVAS_API_PATH }}
19 changes: 1 addition & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ should be written in `style.css`.

Fork and clone this lesson into your local environment. Navigate into its
directory in the terminal, then run `code .` to open the files in Visual Studio
Code. Finally, run `npm install` to install the lab's dependencies. Run
`npm test` as you work through this assignment to see your progress.
Code. Run `learn test` as you work through this assignment to see your progress.

## Link an External CSS File

Expand Down Expand Up @@ -134,22 +133,6 @@ the browser.
page. All of them should have the same background color, centered text, and
occupy 25% of the `width` of the bottom row (since we have 4 divs).

## Saving Your Work Remotely

Currently, the work you've done on this assignment is only on your local
machine. To preserve work on your GitHub fork, you will need to stage the
changes you've made, commit them, and push the commit up to GitHub. Use the
following commands to do this:

```console
$ git add .
$ git commit -m "Completed assignment"
$ git push
```

If you visit your fork on GitHub, you should now see that _you've_ made the most
recent commit, and your solution will be present in the files.

## Conclusion

CSS allows many avenues to the same goal. The important takeaway is to
Expand Down