Skip to content

Commit

Permalink
Merge pull request #1683 from Archi-shaw/rating
Browse files Browse the repository at this point in the history
fix:  Rating Page Fixed
  • Loading branch information
apu52 authored Jan 15, 2025
2 parents eeb0e5c + 1d8330f commit 45ca1bc
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 30 deletions.
4 changes: 2 additions & 2 deletions feedback.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
color: #f0f0f0;
}

body.dark-theme .container{
/* body.dark-theme .container{
background: #333;
}
} */

body.dark-theme .image{
background-color: #555;
Expand Down
6 changes: 3 additions & 3 deletions feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,12 @@
</div>
</header>
<div class="sidebyside">
<div class="image">
<!-- <img src="./img/rateus.jpg"></img> -->
</div>
<div class="container">
<div class="glassmorphism-container">
<h1 class="feedback-heading">Rate Our Service</h1>
<div class="image">
<img src="./img/feedback_img.jpg"></img>
</div>
<hr>

<!-- <div class="stars" id="stars-container"> -->
Expand Down
Binary file added img/greenbackground.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed img/greenbackgroung.jpeg
Binary file not shown.
43 changes: 21 additions & 22 deletions style_.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
body {
/* background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),url("./img/sunset.jpg"); */
background: linear-gradient(#D8E3FF, white);
background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),url("./img/greenbackgroung.jpeg");
background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),url("./img/greenbackground.jpeg");
background-size: cover;
background-position: center;
display: flex;
Expand All @@ -25,9 +25,7 @@ body {
#44107a 29%,
#ff1361 67%,
#510134 100%);

background-size: auto auto;

background-clip: border-box;
color: #fff;
background-clip: text;
Expand All @@ -44,34 +42,30 @@ body {
}
}

.container {
.container {
display: flex;
flex-direction: column;
flex-basis: 100%;
justify-content: center;
align-items: center;
margin: 0px;
align-items: center;
margin: 0px;
padding: 0px;
background:linear-gradient(#D8E3FF, white);
}
/* background:linear-gradient(#D8E3FF, white); */
}

.glassmorphism-container {
margin-top: 30px;
background: rgba(46, 123, 225, 0.1);
backdrop-filter: blur(10px);
/* border-radius: 15px; */
background-size: cover;

border-radius: 15px;


padding: 20px;
/* margin-top: 102px;
margin-bottom: 23px; */

text-align: center;
max-width: 800px;
max-width: 600px;
width: 100%;

}

p {
Expand Down Expand Up @@ -436,22 +430,27 @@ p {
}
.sidebyside {
display: grid;
grid-template-columns: 1fr 1fr; /* Corrected from 's: 1fr 1fr;' */
display: flex;
flex-direction: column;
/* Corrected from 's: 1fr 1fr;' */
margin: 0 auto;
min-height: 80vh;
width: 80vw;
gap:0em;
scale:0.8;
box-shadow: 0 2px 4px grey;
margin-top: 102px;
margin-bottom: 23px;
/* box-shadow: 0 2px 4px grey; */
margin-top: 30px;
/* margin-bottom: 23px; */
/* margin:105px; */
}

.sidebyside .image {
background: url(./img/feedback_img.jpg) ;
.sidebyside .image {
margin-top: 12px;
margin-left: 110px;
height: 320px;
width: 312px;
/* background: url(./img/feedback_img.jpg) ; */
background-size: contain;
background-repeat: no-repeat;
background-color: white;
background-position-y: center;
background-position: center;
}
Binary file added topdeals/bestdeal.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed topdeals/bestdeals.jpg
Binary file not shown.
8 changes: 5 additions & 3 deletions topdeals/topdeals.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<style>
body {
font-family: Arial, sans-serif;
background: url("bestdeals.jpg");
background: url("bestdeal.jpg");
margin: 0;
padding: 20px;
background-size: cover;
Expand All @@ -32,7 +32,9 @@

.header {
text-align: center;
margin-bottom: 40px;
display: flex;
justify-items: center;
margin-bottom: 60px;
}

.header h1 {
Expand All @@ -42,7 +44,7 @@
}

.header p {
font-size: 18px;
font-size: 20px;
color: #0a0a0a;
width: 800px;
margin-left: 210px;
Expand Down

0 comments on commit 45ca1bc

Please sign in to comment.