Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
sachin5865 authored May 1, 2024
1 parent 0682343 commit f895692
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion chennai.css
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ body {

.main{
display: flex;
justify-content:;
justify-content:center;
align-items:center;
width: 100%;
min-height: 100vh;
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<a href="./venues.html" target="">Venues</a>
<a href="./shop.html" target="">Shop</a>
<a href="" target="">Coaching</a>
<a href="" button></a>

<a href="">
<button>REGISTER YOUR VENUE</button>
</a>
Expand Down
2 changes: 1 addition & 1 deletion inner_section.css
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ body{

.main_last{
width: 100%;
min-height: 60vh;
min-height: 40vh;
display: flex;
justify-content: center;
align-items: center;
Expand Down
6 changes: 3 additions & 3 deletions shop.css
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
}
.second_wrapper i:first-child{
left: -22px;
display: none;
/* display: none; */
}
.second_wrapper i:last-child{
right: -22px;
Expand Down Expand Up @@ -265,7 +265,7 @@
}
.card_buy {
width: 300px;
height: 48vh;
height: 55vh;
margin: 20px;
background-color: rgb(25, 26, 28);
border-radius: 8px;
Expand Down Expand Up @@ -344,7 +344,7 @@

.main_last {
width: 100%;
min-height: 60vh;
min-height: 40vh;
/* border: 2px solid red; */
display: flex;
justify-content: center;
Expand Down
5 changes: 3 additions & 2 deletions shop.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const carousel = document.querySelector(".carousel"),
firstImg = carousel.querySelectorAll("img")[0],
arrowIcons = document.querySelectorAll(".wrapper i");
arrowIcons = document.querySelectorAll(".second_wrapper i");
let isDragStart = false, isDragging = false, prevPageX, prevScrollLeft, positionDiff;
const showHideIcons = () => {
// showing and hiding prev/next icon according to carousel scroll left value
Expand Down Expand Up @@ -57,4 +57,5 @@ carousel.addEventListener("touchstart", dragStart);
document.addEventListener("mousemove", dragging);
carousel.addEventListener("touchmove", dragging);
document.addEventListener("mouseup", dragStop);
carousel.addEventListener("touchend", dragStop);
carousel.addEventListener("touchend", dragStop);
carousel.addEventListener("click", showHideIcons);
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ article p {

.main_last {
width: 100%;
min-height: 60vh;
min-height: 40vh;
/* border: 2px solid red; */
display: flex;
justify-content: center;
Expand Down
2 changes: 1 addition & 1 deletion venues.css
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ input::placeholder{

.main_last{
width: 100%;
min-height: 60vh;
min-height: 40vh;
display: flex;
justify-content: center;
align-items: center;
Expand Down

0 comments on commit f895692

Please sign in to comment.