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

Changes in read books selection #1467

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
akankshachanana1 marked this conversation as resolved.
Show resolved Hide resolved
18 changes: 15 additions & 3 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2064,6 +2064,12 @@ input[type="radio"] {
padding: 12px 20px 12px 40px;
border: 1px solid #ddd;
margin-bottom: 12px;
opacity: 0.8;
}
#myInput:hover{
background-color: transparent;
color:white;
font-size: 25px;
}
#myUL {
list-style-type: none;
Expand Down Expand Up @@ -2103,20 +2109,26 @@ input[type="radio"] {
font-size: 18px;
color: #000;
display: block;
background-color: #cda867;
background-color: #c9b186;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s, color 0.3s;
}

#myUL li a:hover:not(.header) {
background-color: #dfc18d;
background-color: transparent;
color:white;
}

.search-heading{
padding:2px 12px !important;
border-bottom: 3px solid white;
margin: 0px auto 20px;
width: fit-content;
height:33px;

akankshachanana1 marked this conversation as resolved.
Show resolved Hide resolved
}
.search-heading:hover{
background-color: transparent;
cursor: pointer;
}


Expand Down