Skip to content

Commit

Permalink
Bunch of additons and progress
Browse files Browse the repository at this point in the history
  • Loading branch information
Setaish committed Mar 21, 2024
1 parent 24c76f4 commit c5c4471
Show file tree
Hide file tree
Showing 14 changed files with 830 additions and 0 deletions.
Binary file added Media/ImgTemp/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Media/ImgTemp/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Media/ImgTemp/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Media/ImgTemp/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Media/ImgTemp/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Media/ImgTemp/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Media/ImgTemp/7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Media/ImgTemp/8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 59 additions & 0 deletions home/JavaScript/products.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
[
{
"id": 1,
"name":"Art Title",
"Media":"Artist Name",
"image": "/Media/ImgTemp/1.png",
"description":"Descriptions:"
},
{
"id": 2,
"name":"Art Title",
"Media":"Artist Name",
"image": "/Media/ImgTemp/2.png",
"description":"Descriptions:"
},
{
"id": 3,
"name":"Art Title",
"Media":"Artist Name",
"image": "/Media/ImgTemp/3.png",
"description": "Descriptions:"
},
{
"id": 4,
"name":"Art Title",
"Media":"Artist Name",
"image": "/Media/ImgTemp/4.png",
"description":"Descriptions:"
},
{
"id": 5,
"name":"Art Title",
"Media":"Artist Name",
"image": "/Media/ImgTemp/5.png",
"description": "Description :Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum"
},
{
"id": 6,
"name":"Art Title",
"Media":"Artist Name",
"image": "/Media/ImgTemp/6.png",
"description":"Description:Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum"
},
{
"id": 7,
"name":"Art Title",
"Media":"Artist Name",
"image": "/Media/ImgTemp/7.png",
"description": "Descriptions:"
},
{
"id": 8,
"name":"Art Title",
"Media":"Artist Name",
"image": "/Media/ImgTemp/8.png",
"description": "Description:Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum"
}

]
194 changes: 194 additions & 0 deletions home/static/style/Gallerystyle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,194 @@
body{
margin: 0;
font-family: Roboto;
background-color: #7EC4B5;
}
a{
color: unset;
text-decoration: none;

}
/*-------------header--------/*/

.container{
padding: 10px 10%;

}

nav{
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;

}

.logo{
width: 200px;
}
nav ul li{
display: inline-block;
list-style: none;
margin: 10px 20px;


}
nav ul li a {
color: #0009;
text-decoration: none;
font-size: 18px;
position: relative;
cursor: pointer;
}
nav ul li a::after{
content: '';
width: 0;
height: 3px;
background: #EFFFC8;
position: absolute;
left: 0;
bottom: -6px;
transition: 0.5s;
}
nav ul li a:hover::after{
width:100%;
}
.header-text{
margin-top: 25%;
font-size: 25px;

}
.header-text h1{
font-size: 60px;
margin-top: 20px;

}
.header-text h1 span{
color: #2B2525;

}
/*/--------------rest --------/*/
.title{
font-size: xx-large;
padding: 20px 0;
color:#7EC4B5;
}
.titles{
font-size: xx-large;
padding: 20px 0;
color:#2B2525;
}
.listProduct .item img{
width: 90%;
filter: drop-shadow(0 10px 09px,#2B2525);
}
.listProduct{
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;

}
.listProduct .item{
background-color: #EFFFC8;
padding: 20px;
border-radius: 20px;
}
.listProduct .item h2{
font-weight: 500;
font-size: large;
}
.listProduct .item .Media{
letter-spacing: 7px;
font-size: small;
}
/* detail page */

.ViewArtPage {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 50px;
text-align: left;

}
.ViewArtPage .image img{
width: 100%;
}
.ViewArtPage .image{
position: relative;
}

.ViewArtPage .name{
font-size: xxx-large;
padding: 40px 0 0 0;
margin: 0 0 10px 0;
color: #2B2525;
}
.ViewArtPage .Media{
font-weight: bold;
font-size: x-large;
letter-spacing: 7px;
margin-bottom: 20px;
color:#2B2525;
}
.ViewArtPage .buttons{
display: flex;
gap: 20px;
margin-bottom: 20px;
}
.ViewArtPage .buttons button{
background-color: #EFFFC8;
border: 5 px;
padding: 15px 20px;
border-radius: 20px;
font-family: Rockwell;
font-size: large;
}
.ViewArtPage .buttons svg{
width: 15px;
}

.titlesViewArtPage{
font-size: xx-large;
padding: 20px 0;
color:#2B2525;
}

/*<------Responsive Part------>*/

/* // ipad */
@media only screen and (max-width: 992px) {
.listProduct{
grid-template-columns: repeat(3, 1fr);
}
.ViewArtPage{
grid-template-columns: 40% 1fr;
}
}


/* mobile */
@media only screen and (max-width: 768px) {
.listProduct{
grid-template-columns: repeat(2, 1fr);
}
.ViewArtPage{
text-align: center;
grid-template-columns: 1fr;
}
.ViewArtPage .image img{
width: unset;
height: 40vh;
}
.ViewArtPage .name{
font-size: x-large;
margin: 0;

}
.ViewArtPage .buttons button{
font-size: small;
}
.ViewArtPage .buttons{
justify-content: center;
}
}

Loading

0 comments on commit c5c4471

Please sign in to comment.