Skip to content
Open
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
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,9 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm start & sleep 5 && npm test
- name: Upload HTML report(backstop data)
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: report
path: backstop_data
81 changes: 71 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@mate-academy/backstop-config": "*",
"@mate-academy/eslint-config": "*",
"@mate-academy/linthtml-config": "0.0.1",
"@mate-academy/scripts": "^0.3.16",
"@mate-academy/scripts": "^0.6.7",
"@mate-academy/stylelint-config": "*",
"backstopjs": "^5.0.1",
"eslint": "^5.16.0",
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Style it up
1. Replace `<your_account>` with your Github username in the links
- [DEMO LINK](https://<your_account>.github.io/layout_style-it-up/) <br>
- [TEST REPORT LINK](https://<your_account>.github.io/layout_style-it-up/report/html_report/)
- [DEMO LINK](https://DarMatt.github.io/layout_style-it-up/) <br>
- [TEST REPORT LINK](https://DarMatt.github.io/layout_style-it-up/report/html_report/)
2. Follow [this instructions](https://mate-academy.github.io/layout_task-guideline/)
___

Expand Down
34 changes: 34 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
@@ -1 +1,35 @@
/* write your styles here */

body {
margin: 0;
}

body > * {
width: 300px;
height: 100px;
margin: auto;
}

body > *:hover {
height: 200px;
}

#header {
background-color: blue;
}

.important {
background-color: red;
}

.interesting {
background-color: green;
}

.surprising {
background-color: orange;
}

#footer {
background-color: black;
}