Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

re-styled cards and search bar #786

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
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
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,9 +307,11 @@

- Place: Durgapur, West Bengal, India.
- Bio: CSE Undergrad | Sophomore @KIIT, Bhubaneswar | Passionate MERN Stack Developer

- GitHub: [Sambit Mondal](https://github.com/Sambit-Mondal)

### #### Name: [Nirbheek Kumar](https://github.com/NirbheekKumar)
- Place: Bangalore, Karnataka, India.
- Bio: Undergrad from BIT, Bangalore | Dedicated and enthusiastic learner for software development and technology
- GitHub: [Nirbheek Kumar](https://github.com/NirbheekKumar)

28 changes: 19 additions & 9 deletions backend/public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ section {
text-align: center;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
padding: 20px;
background-color: #a0d8f0;
box-shadow: 0 4px 8px 0 #a3cbf5,
0 6px 20px 0 #a3cbf5;
background-color: #dfe6e9;
box-shadow: 0 4px 8px 0 #c0c4c6,
0 6px 20px 0 #c0c4c6;

/* width: 15vw;
height: 30vh; */
Expand All @@ -151,10 +151,9 @@ section {

}

.course:hover {
border: .2px solid #093074;
background-color: #5c93f2;
}
/* .course:hover {
border:2px solid #093074;
} */

.course[data-paid="false"]:hover {
/* Your hover effect styles */
Expand All @@ -164,6 +163,7 @@ section {
.course .course-banner img {
width: 150px;
height: 150px;
object-fit: cover;
}

.course-author:hover {
Expand All @@ -183,6 +183,7 @@ section {

.course-title {
margin-top: .5em;
color: black;
}

.btn-7c {
Expand Down Expand Up @@ -408,6 +409,7 @@ section {
.course-detail p {
font-size: 1.3em;
background-color: rgba(255, 0, 0, 0.357);
border-radius: 1rem;
width: fit-content;
padding: 0.1em 0.5em;
margin: 0.8vh auto;
Expand Down Expand Up @@ -447,7 +449,7 @@ section {
.buy-button {
padding: 0.7em;
width: 10em;
color: black;
color: white;
background-color: #0654a8;
font-size: 1.2em;
border: none;
Expand All @@ -462,7 +464,14 @@ section {
background: #093074;
color: white;
}

.eye-button:hover{
/* color: white; */
font-weight: bold;
}
.eye-button:focus{
outline: none;
border: none;
}
.buy-button[data-paid="true"] {
/* Button styles when purchased */
background-color: none;
Expand Down Expand Up @@ -533,6 +542,7 @@ section {
outline: none;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
width: 100%;
margin-top: 2rem;
max-width: 400px;
}

Expand Down