Skip to content

Commit

Permalink
successfully ennhanced the user interface of the rating form
Browse files Browse the repository at this point in the history
  • Loading branch information
dnyanesh99borse committed Oct 16, 2024
2 parents fe91145 + f45b55e commit 281df84
Show file tree
Hide file tree
Showing 50 changed files with 5,360 additions and 2,426 deletions.
1 change: 1 addition & 0 deletions Mystical-fantaies.html
Original file line number Diff line number Diff line change
Expand Up @@ -918,6 +918,7 @@ <h2>Quick Links</h2>
</li>
<li class="foot-quick"><a href="#contact" onclick="lenis.scrollTo('#contact')">Contact Us</a></li>
<li class="foot-quick"><a href="#faqq" onclick="lenis.scrollTo('#faqq')">FAQ</a></li>

</ul>
</div>
</div>
Expand Down
33 changes: 26 additions & 7 deletions assets/css/BookRecommend.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,24 @@
border-radius: 5px;
}

.author input[type="text"] {
padding: 8px;
border: 1px solid #ccc;
.author {
font-size: 15px;
border-radius: 5px;
transition: all 200ms ease;
}



.author input[type="text"] {

padding: 8px;
border: 1px solid #ccc;
border-radius: 5px;
transition: all 200ms ease;
margin-top: 14px;

}


.author input[type="text"]:focus {
border: 2px solid #c27a7e;
outline: none;
Expand Down Expand Up @@ -112,13 +123,21 @@ select {

#upb {
display: inline-block;
/* Ensures the underline fits the text width */
position: relative;
/* Ensures the underline fits the text width */
position: none;
cursor: pointer;
font-size: 24px;
/* Adjust font size as needed */
/* Adjust font size as needed */
}

#upb {

display: inline-block;
position: none;
cursor: pointer;
font-size: 24px;

}
#upb::after {
content: "";
position: absolute;
Expand Down
248 changes: 248 additions & 0 deletions assets/css/event.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,248 @@
* {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;

}
h1 {
margin-left: 20px;
color:crimson;
padding: 10px;
}
body {
display: flex;
flex-direction: column;
align-items: center;
background: linear-gradient(to right, #ff9a9e, #fad0c4, #fad0c4);

}

header {

height: 100px;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 10px;
box-shadow: 10px 10px 15px 11px rgba(0.2, 0.2, 0, 0.5);

padding: 1em ;
text-align: center;
}

nav {

}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
}

nav ul li {

display: inline;
margin: 0 1em;
}
nav ul li a {
color: crimson;
text-decoration: none;
}
nav ul li a:hover {

color: rgb(207, 79, 158);
padding: 10px;
border: none;
border-radius: 5px;
transform: anim;
transition: all 0.1s linear;
background-color: white;
text-decoration: none;
}
@keyframes anim {
from {
transform: scale(0.2,0.4);
}
to {
transform: scale(0.7,0.9);
}
}

main {

padding: 1em;
width: 100%;
max-width: 800px;
display: flex;
flex-direction: column;
align-items: center;
}

section {
margin-bottom: 2em;
width: 100%;
}

h2 {
color: #450105;
}



.close-button {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}

.close-button:hover,
.close-button:focus {
color: black;
text-decoration: none;
cursor: pointer;
}

.ul {
text-decoration: black;
}

#event-calendar {
width: 100%;
max-width: 800px;
background: linear-gradient(to right, #ff9a9e, #fad0c4, #fad0c4);
padding: 2em;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.calendar-header {

display: flex;
justify-content: space-between;
align-items: center;
}

.calendar-header button {
/* background: #fad0c4; */
background: #450105;
box-sizing: border-box;

color: #fff;
border: none;
padding: 0.5em 1em;
border-radius: 5px;
cursor: pointer;
}

.calendar-header h3 {
margin: 0;
}

table {
width: 100%;
border-collapse: collapse;
margin-top: 1em;
}

thead th {
background: #450105;
color: #fff;
padding: 0.5em 0;
}

tbody td {
padding: 1em;
text-align: center;
cursor: pointer;
transition: background 0.3s;
}

tbody td:hover {

background: #f4f4f9;
border-radius: 4px;
}

.event {
background: #f39c12;
color: #fff;
border-radius: 50%;
padding: 0.3em;
}

#event-details {
margin-top: 2em;
width: 100%;
}

#event-list {
list-style: none;
padding: 0;
}

#event-list li {
background: #f39c12;
color: #fff;
margin: 0.5em 0;
padding: 1em;
border-radius: 5px;
}
.footer{
position: absolute;
left: 0%;
background-color: #FF9B9B;
width: 100%;

padding:30px 0px;
font-family: 'Play', sans-serif;
text-align:center;
}

.footer .row{
width:100%;
margin:1% 0%;
padding:0.6% 0%;
color:white;
font-size:0.8em;
}

.footer .row a{
text-decoration:none;
color:white;
transition:0.5s;
}

.footer .row a:hover{
color:#450105;
}

.footer .row ul{
width:100%;
}

.footer .row ul li{
display:inline-block;
margin:0px 30px;
}

.footer .row a i{
font-size:2em;
margin:0% 1%;
}

@media (max-width:720px){
.footer{
text-align:left;
padding:5%;
}
.footer .row ul li{
display:block;
margin:10px 0px;
text-align:left;
}
.footer .row a i{
margin:0% 3%;
}
}
Loading

0 comments on commit 281df84

Please sign in to comment.