Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
affancoder authored Aug 7, 2024
1 parent 2fab456 commit 588bf63
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ <h1>Punjabi Hits - Dill Se Punjabi</h1>
</div>

<div class="contianer3">
<div class="container" style="background-image: url(https://i0.wp.com/css-tricks.com/wp-content/uploads/2018/05/sweep_grow.gif?ssl=1); background-size: cover;">
<div class="container">
<div class="songList">
<h1>Best of Bollywood Hits - Love Songs</h1>
<br>
Expand Down
35 changes: 32 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap");

body {
background-color: rgb(23, 23, 23);
}

* {
margin: 0;
padding: 0;
}

nav {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

nav ul {
display: flex;
align-items: center;
Expand All @@ -20,19 +24,23 @@ nav ul {
color: white;
cursor: pointer;
}

.brand img {
height: 50px;
padding: 0 8px;
}

.brand {
display: flex;
align-items: center;
font-weight: bolder;
font-size: 1.5rem;
}

nav ul li {
padding: 0 12px;
}

.bottom {
position: sticky;
height: 130px;
Expand All @@ -44,13 +52,16 @@ nav ul li {
align-items: center;
flex-direction: column;
}

.icons {
margin-top: 12px;
}

.icons i {
cursor: pointer;
color: white;
}

.container {
min-height: 70vh;
background: black;
Expand All @@ -63,11 +74,12 @@ nav ul li {
padding: 34px;
border-radius: 24px;
/* background-image: url("assests/bg.jpg"); */
background-image: url('https://64.media.tumblr.com/tumblr_m9bgaq8tzm1rc7pm9o1_400.gif');
background-color: #08AEEA;
background-image: linear-gradient(0deg, #08AEEA 0%, #2AF598 100%);
background-size: cover;
}

img:hover{
img:hover {
cursor: pointer;
}

Expand All @@ -76,6 +88,7 @@ img:hover{
text-align: center;
cursor: pointer;
}

.songItem {
height: 50px;
display: flex;
Expand All @@ -87,46 +100,62 @@ img:hover{
align-items: center;
border-radius: 34px;
}

.songItem:hover {
transition: translateX(1.11);
}

.songItem img {
width: 43px;
margin: 0 23px;
border-radius: 34px;
}

.timestamp {
margin: 0 23px;
}

.timestamp i {
cursor: pointer;
}

.songInfo {
position: absolute;
left: 10vw;
font-family: "Varela Round", Arial, Helvetica, sans-serif;
}

.songInfo img {
opacity: 0;
transition: opacity 0.4s ease-in;
}

.contianer3 .container {
background-color: #0093E9;
background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);

}

@media (max-width: 600px) {
.songItem {
width: 109%;
justify-content: space-around;
margin-left: -10px;
}

.container {
width: 75%;
}

.bottom {
height: 150px;
}

.icons {
margin-top: 50px;
}

.timestamp {
margin-right: 8px;
}
}
}

0 comments on commit 588bf63

Please sign in to comment.