-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
82 changed files
with
9,068 additions
and
1,339 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Auto-label on Any Issue | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
auto-label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add labels to any new issue | ||
uses: actions/github-script@v4 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const labelsToAdd = ["gssoc"]; | ||
await github.issues.addLabels({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: context.issue.number, | ||
labels: labelsToAdd | ||
}); |
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,27 @@ | ||
name: Build site nightly | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
dot-release: | ||
name: dot-release | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: curl | ||
env: | ||
NETLIFY_BUILD_HOOK: ${{ secrets.NETLIFY_BUILD_HOOK }} | ||
uses: wei/curl@v1 | ||
with: | ||
args: -X POST -d '{}' "$NETLIFY_BUILD_HOOK" | ||
|
||
- name: Check response status | ||
run: | | ||
response=$(curl -s -o response.txt -w "%{http_code}" -X POST -d '{}' "$NETLIFY_BUILD_HOOK") | ||
if [ "$response" -ne 200 ]; then | ||
echo "Build trigger failed with status: $response" | ||
cat response.txt | ||
exit 1 | ||
fi |
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,15 @@ | ||
{ | ||
"extends": [ | ||
"development" | ||
], | ||
"hints": { | ||
"compat-api/css": [ | ||
"default", | ||
{ | ||
"ignore": [ | ||
"backdrop-filter" | ||
] | ||
} | ||
] | ||
} | ||
} |
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,3 +1,3 @@ | ||
{ | ||
"liveServer.settings.port": 5501 | ||
"liveServer.settings.port": 5502 | ||
} |
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,119 +1,228 @@ | ||
.about-us { | ||
display: block; | ||
margin: auto; | ||
width: 52.5rem; | ||
height: 100%; | ||
background-color: white; | ||
display: block; | ||
margin: auto; | ||
width: 52.5rem; | ||
height: 100%; | ||
} | ||
|
||
.about-us-heading { | ||
text-align: center; | ||
font-size: 40px; | ||
margin-bottom: 5rem; | ||
margin-top: 5rem; | ||
text-align: center; | ||
font-size: 40px; | ||
margin-bottom: 5rem; | ||
margin-top: 5rem; | ||
} | ||
|
||
.about-service { | ||
height: 360px; | ||
width: 1200px; | ||
margin-left: 150px; | ||
margin-top: -40px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.sec-1, | ||
.sec-2 { | ||
height: 360px; | ||
width: 600px; | ||
} | ||
|
||
.sec-2 { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-direction: column; | ||
gap: 8px; | ||
} | ||
|
||
.a-1, | ||
.a-2, | ||
.a-3 { | ||
height: 94px; | ||
width: 500px; | ||
display: flex; | ||
align-items: left; | ||
justify-content: left; | ||
background-color: #111111; | ||
border-radius: 11px; | ||
} | ||
|
||
.a-l, | ||
.b-l, | ||
.c-l { | ||
height: 58px; | ||
width: 58px; | ||
border-radius: 50%; | ||
margin-top: 17px; | ||
margin-left: 15px; | ||
border: 2px solid #2f7f81; | ||
} | ||
|
||
.a-r, | ||
.b-r { | ||
height: 58px; | ||
width: 380px; | ||
margin-top: 19px; | ||
margin-left: 20px; | ||
} | ||
|
||
.c-r { | ||
height: 58px; | ||
width: 380px; | ||
margin-left: 20px; | ||
margin-top: 17px; | ||
} | ||
|
||
.head-1, | ||
.head-2 { | ||
height: 28px; | ||
width: 380px; | ||
} | ||
|
||
.head-1 { | ||
font-size: 18px; | ||
} | ||
|
||
.head-2 { | ||
font-size: 10px; | ||
margin-top: 7px; | ||
} | ||
.h-icon { | ||
margin-left: 10px; | ||
margin-top: 11px; | ||
} | ||
|
||
.q-icon { | ||
margin-left: 7px; | ||
margin-top: 7px; | ||
} | ||
|
||
.a-icon { | ||
margin-left: 14px; | ||
margin-top: 15px; | ||
} | ||
.about-img { | ||
height: 300px; | ||
width: 520px; | ||
margin-left: 40px; | ||
margin-top: 30px; | ||
} | ||
|
||
.about-us-block { | ||
display: flex; | ||
justify-content: space-evenly; | ||
display: flex; | ||
justify-content: space-evenly; | ||
margin-top: 80px; | ||
} | ||
|
||
.about-us-community, .about-us-product, .about-us-event, .about-us-location { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 1rem; | ||
width: 35%; | ||
height: 18rem; | ||
border: 1px solid rgba(206, 212, 218, 1); | ||
border-radius: 8px; | ||
margin-bottom: 21px; | ||
.about-us-community, | ||
.about-us-product, | ||
.about-us-event, | ||
.about-us-location { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 1rem; | ||
width: 35%; | ||
height: 18rem; | ||
border: 1px solid rgba(206, 212, 218, 1); | ||
border-radius: 8px; | ||
margin-bottom: 21px; | ||
} | ||
|
||
.about-us-community { | ||
border: 2px solid #1c413b; | ||
border: 2px solid #1c413b; | ||
} | ||
|
||
.about-us-community:hover { | ||
background: #1c413b; | ||
color: white; | ||
background: #1c413b; | ||
color: white; | ||
} | ||
|
||
.about-us-location { | ||
border: 2px solid #1c413b; | ||
border: 2px solid #1c413b; | ||
} | ||
|
||
.about-us-location:hover { | ||
background: #1c413b; | ||
color: white; | ||
background: #1c413b; | ||
color: white; | ||
} | ||
|
||
.about-us-product { | ||
border: 2px solid #1c413b; | ||
border: 2px solid #1c413b; | ||
} | ||
|
||
.about-us-product:hover { | ||
background: #1c413b; | ||
color: white; | ||
background: #1c413b; | ||
color: white; | ||
} | ||
|
||
.about-us-event { | ||
border: 2px solid #1c413b; | ||
border: 2px solid #1c413b; | ||
} | ||
|
||
.about-us-event:hover { | ||
background: #1c413b; | ||
color: white; | ||
background: #1c413b; | ||
color: white; | ||
} | ||
|
||
.about-us-blk-text { | ||
font-size: 20px; | ||
font-weight: 600; | ||
line-height: 30px; | ||
letter-spacing: 0em; | ||
text-align: left; | ||
margin-top: 1rem; | ||
font-size: 20px; | ||
font-weight: 600; | ||
line-height: 30px; | ||
letter-spacing: 0em; | ||
text-align: left; | ||
margin-top: 1rem; | ||
} | ||
|
||
.about-us-blk-para { | ||
font-size: 16px; | ||
font-weight: 400; | ||
line-height: 25px; | ||
letter-spacing: 0em; | ||
text-align: left; | ||
margin-left: 1rem; | ||
margin-right: 1rem; | ||
font-size: 16px; | ||
font-weight: 400; | ||
line-height: 25px; | ||
letter-spacing: 0em; | ||
text-align: left; | ||
margin-left: 1rem; | ||
margin-right: 1rem; | ||
} | ||
|
||
@media only screen and (max-width: 768px) { | ||
.about-us-block { | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.about-us-community, .about-us-event, .about-us-location, .about-us-product { | ||
width: 90%; | ||
height: 100%; | ||
padding: 0.5rem; | ||
} | ||
.about-us-block { | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.about-us-community, | ||
.about-us-event, | ||
.about-us-location, | ||
.about-us-product { | ||
width: 90%; | ||
height: 100%; | ||
padding: 0.5rem; | ||
} | ||
} | ||
|
||
@media only screen and (max-width: 1020px) { | ||
.about-us-block { | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.about-us-community, .about-us-event, .about-us-location, .about-us-product { | ||
width: 90% !important; | ||
height: 100%; | ||
padding: 0.5rem; | ||
} | ||
.about-us-block { | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.about-us-community, | ||
.about-us-event, | ||
.about-us-location, | ||
.about-us-product { | ||
width: 90% !important; | ||
height: 100%; | ||
padding: 0.5rem; | ||
} | ||
} | ||
|
||
@media only screen and (max-width: 1250px) { | ||
.about-us-community, .about-us-event, .about-us-location, .about-us-product { | ||
width: 45%; | ||
} | ||
} | ||
.about-us-community, | ||
.about-us-event, | ||
.about-us-location, | ||
.about-us-product { | ||
width: 45%; | ||
} | ||
} |
Oops, something went wrong.