Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/shuhaki/SwapReads
Browse files Browse the repository at this point in the history
  • Loading branch information
shuhaki committed Jun 5, 2024
2 parents 9268d79 + 6bc9e98 commit 9b22e27
Show file tree
Hide file tree
Showing 29 changed files with 1,987 additions and 1,046 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/autolabelissue.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Auto Label Issues
name: Auto Label Issues

on:
issues:
Expand All @@ -15,9 +15,11 @@ jobs:
- name: Check out the repository
uses: actions/checkout@v3

- name: Add Label to Issues
- name: Add Labels to Issues
if: github.event_name == 'issues'
uses: actions-ecosystem/action-add-labels@v1.1.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: gssoc
labels: |
gssoc
level1
65 changes: 65 additions & 0 deletions assets/css/about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;

}

body{
background-color: rgb(225, 148, 148);
}
.heading{
text-align: center;
margin-top: 25px;
}
.heading{
text-align: center;
margin-top: 25px;
}
.heading h1{
font-size: 50px;
color: rgb(143, 75, 58);

}

.heading p{
font-size: 20px;
color: #666;
margin-bottom: 50px;
}
.about-us{
display: flex;
align-items: center;

}
.about-us img{
flex: 0 50%;
max-width: 40%;
height: auto;
}
.content{
padding: 35px;
}
.content h2{
color: rgb(158, 77, 52);
font-size: 24px;
margin: 15px 0px;

}

.content p{
color: #666;
font-size: 18px;
line-height: 1.5;
margin: 15px 0px;
}

.contribute{
text-align: center;
margin-top: 25px;
}
.contribute h1{
font-size: 50px;
color: rgb(191, 110, 87);

}
46 changes: 45 additions & 1 deletion assets/css/aboutus.css
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,48 @@ h1, h2, h3 {

.navbar-item.dropdown:hover .dropdown-arrow {
transform: rotate(180deg);
}
}
/* Media Query for Mobile Devices */
@media (max-width: 600px) {
.container {
padding: 10px;
}

header {
padding: 15px;
margin-bottom: 20px;
}

.stats {
flex-direction: column;
align-items: center;
}

.stat {
margin-bottom: 20px;
}

.team-cards {
flex-direction: column;
align-items: center;
}

.team-member {
max-width: 100%;
margin-bottom: 20px;
}

.navbar-link {
padding: 6px 8px;
}

.dropdown-menu-item {
padding: 10px 14px;
}

.dropdown-menu {
top: auto;
position: relative;
}
}

Loading

0 comments on commit 9b22e27

Please sign in to comment.