Skip to content

Commit

Permalink
Merge pull request #909 from shruti-mishraa/fix-typo-documentation
Browse files Browse the repository at this point in the history
Documentation Update: Correct Typo Errors in Pull Request Checklist #902
  • Loading branch information
anuragverma108 authored May 27, 2024
2 parents 739fc88 + 7078747 commit 520d8ce
Show file tree
Hide file tree
Showing 3 changed files with 276 additions and 278 deletions.
22 changes: 13 additions & 9 deletions .github/Pull_Request_Template.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,17 @@ Fixes: #(issue no.)

# Checklist:

<!----Please delete options that are not relevant.And in order to tick the check box just but x inside them for example [x] like this----->
- [ ] I have made this from my own
- [ ] I have taken help from some online resourses
- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
<!--
----Please delete options that are not relevant. And in order to tick the check box just put x inside them for example [x] like
-->

- [ ] I have made this change from my own.
- [ ] I have taken help from some online resources.
- [ ] My code follows the style guidelines of this project.
- [ ] I have performed a self-review of my own code.
- [ ] I have commented my code, particularly in hard-to-understand areas.
- [ ] I have made corresponding changes to the documentation.
- [ ] My changes generate no new warnings.
- [ ] I have tested the changes thoroughly before submitting this pull request.
- [ ] I have provided relevant issue numbers, screenshots, and videos after making the changes.
- [ ] I have provided relevant issue numbers and screenshots after making the changes.

120 changes: 120 additions & 0 deletions assets/css/Available.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
:root {
--btn-bg-color: hsl(357, 37%, 62%);
--btn-bg-hover-color: hsl(357, 37%, 52%);
--btn-text-color: white;
--background-color: hsl(20, 43%, 93%);
;
--old-rose: hsl(357, 37%, 62%);
}

body {
background-color: var(--background-color);
font-family: 'Poppins', sans-serif;
}

.book-display .benefits-content {
text-align: center;
margin-bottom: 40px;
margin-top: 40px;
}

.book-display .book-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
justify-content: center;
padding: 50px;
}

.book-item {
text-align: center;
max-width: 200px;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: transform 0.3s ease-in-out;
padding: 5px;
padding-bottom: 30px;

}

.book-cover {
width: 4.5cm;
height: 6.5cm;
border: 2px solid transparent;
padding: 6px;
transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.book-title {
margin: 10px 0;
font-size: 18px;
color: #474747;
}

h2.section-title {
font-family: 'Philosopher', sans-serif;
color: hsl(203, 30%, 26%);
sss;
font-size: 3em;
}

.section-text {
font-family: "Poppins", sans-serif;
color: hsl(208, 7%, 46%);
}

.book-item:hover {
transform: translateY(-5px);
}

.book-cover:hover {
border-color: hsl(357, 37%, 62%);
transform: scale(1.05);
}

.btn-secondary {
background-color: var(--btn-bg-color);
color: var(--btn-text-color);
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
text-decoration: none;
display: inline-block;
margin-top: 10px;
position: relative;
transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
width: fit-content;
margin-left: 40px;


}

.btn-secondary::after,
.btn-secondary::before {
content: "";
position: absolute;
transition: background-color 0.3s ease-in-out;
}

.btn-secondary::after {
width: 100%;
height: 6px;
background-color: var(--border-color-bottom);
bottom: -6px;
left: 0;
}

.btn-secondary::before {
width: 6px;
height: 100%;
background-color: var(--border-color-right);
top: 0;
right: -6px;

}

.btn-secondary:hover {
background-color: var(--btn-bg-hover-color);

}
Loading

0 comments on commit 520d8ce

Please sign in to comment.