-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into Issue_template
- Loading branch information
Showing
13 changed files
with
8,199 additions
and
8,971 deletions.
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,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
|
||
open-pull-requests-limit: 5 | ||
|
||
|
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,33 @@ | ||
name: Build and Test | ||
|
||
|
||
on: | ||
|
||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
|
||
jobs: | ||
build_test: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [14.x, 15.x, 16.x] | ||
|
||
|
||
steps: | ||
|
||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: npm ci, build and test | ||
run: | | ||
npm ci | ||
npm run build --if-present | ||
npm test |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Submodule A-Simple-Web-Contact-Form
updated
from d54487 to 404b5a
Submodule ToDo-Web-App
added at
7f77ea
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
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 |
---|---|---|
@@ -1,41 +1,66 @@ | ||
|
||
.footer_main{ | ||
background-color: #FFFFFF ; | ||
border: clamp(0px, var(--flow-condition), 0.125rem) solid var(--accent-cyan); | ||
border-radius: 0.5em; | ||
.footer_main { | ||
background-color: #ffffff; | ||
border: clamp(0px, var(--flow-condition), 0.125rem) solid var(--accent-cyan); | ||
border-radius: 0.5em; | ||
} | ||
|
||
.footer_container { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-items: center; | ||
color: black; | ||
padding: 2%; | ||
border: clamp(0px, var(--flow-condition), 0.125rem) solid var(--accent-cyan); | ||
border-radius: 0.5em; | ||
width: 80vw; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-items: center; | ||
color: black; | ||
padding: 2%; | ||
border: clamp(0px, var(--flow-condition), 0.125rem) solid var(--accent-cyan); | ||
border-radius: 0.5em; | ||
} | ||
.footer_brand { | ||
display: flex; | ||
max-width: 300px; | ||
text-align: center; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 8px; | ||
} | ||
.h4 { | ||
color: var(--text-primary); | ||
font-weight: 500; | ||
} | ||
.body3 { | ||
color: var(--text-primary); | ||
font-weight: 300; | ||
} | ||
.pages { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-between; | ||
align-items: center; | ||
gap: 8px; | ||
} | ||
|
||
.mt { | ||
margin-top: 0px; | ||
} | ||
|
||
@media only screen and (max-width: 800px) and (min-width: 450px) { | ||
.footer_container { | ||
width: 70vw; | ||
} | ||
.footer_brand{ | ||
display: flex; | ||
max-width: 300px; | ||
text-align: center; | ||
.footer_brand { | ||
max-width: 180px; | ||
} | ||
} | ||
|
||
@media only screen and (max-width: 449px) and (min-width: 300px) { | ||
.footer_container { | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 8px; | ||
} | ||
.h4{ | ||
color: var(--text-primary); | ||
font-weight: 500; | ||
.footer_brand { | ||
max-width: 180px; | ||
} | ||
.body3{ | ||
color: var(--text-primary); | ||
font-weight: 300; | ||
.mt { | ||
margin-top: 30px; | ||
} | ||
.pages{ | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-between; | ||
align-items: center; | ||
gap: 8px; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -44,6 +44,6 @@ | |
width: 100%; | ||
} | ||
|
||
submit_button:hover { | ||
.submit_button:hover { | ||
background-color: #0056b3; | ||
} |
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