@tailwind base; | |
@tailwind components; | |
@tailwind utilities; | |
*{ | |
box-sizing: border-box; | |
padding: 0; | |
margin: 0; | |
} | |
@font-face{ | |
font-family: circular; | |
src: url("./Spotify_Font_Font_Family_Fontmirror/Circular/Circular/CircularStd-Black.otf"); | |
} | |
@font-face { | |
font-family: spotifyFont; | |
src: url("./Spotify_Font_Font_Family_Fontmirror/Gotham-Font/Gotham-Light.otf"); | |
} | |
body{ | |
font-family: spotifyFont,sans-serif; | |
overflow-x: hidden; | |
overflow-y: scroll; | |
background-color: #212121; | |
} | |
/* ===== Scrollbar CSS ===== */ | |
/* Firefox */ | |
* { | |
scrollbar-width: none; | |
scrollbar-color: #1db954 #121212; | |
} | |
/* Chrome, Edge, and Safari */ | |
*::-webkit-scrollbar { | |
width: 10px; | |
} | |
*::-webkit-scrollbar-track { | |
background: #212121; | |
} | |
*::-webkit-scrollbar-thumb { | |
background-color: #1db954; | |
border-radius: 10px; | |
border: 0px none #ffffff; | |
} | |
.extra_Grad{ | |
background: rgb(40,40,40); | |
background: linear-gradient(0deg, rgba(40,40,40,1) 18%, rgba(40,40,40,0) 100%); | |
} | |
/* for header */ | |
/* ======================================= */ | |
@media only screen and (max-width: 600px){ | |
.header{ | |
/* column-gap: 10px; */ | |
} | |
.header-logo{ | |
max-width: 100px; | |
width: 100px; | |
padding-left: 8px; | |
} | |
.header-search{ | |
width: 300px; | |
margin-right: 0; | |
} | |
.header-hamburger{ | |
display: flex; | |
height: 50px; | |
width: 50px; | |
scale: 1.3; | |
justify-content: left; | |
align-items: center; | |
margin-right: 10px; | |
} | |
/* footer */ | |
/* ===================================== */ | |
.rhap_container{ | |
padding-left: 3px; | |
} | |
.rhap_volume-controls{ | |
display: none; | |
} | |
.rhap_additional-controls{ | |
display: none; | |
} | |
.rhap_time{ | |
font-size: 12px; | |
} | |
.rhap_controls-section{ | |
align-content: center; | |
margin: auto; | |
} | |
.footer-left{ | |
width: 70px; | |
} | |
.footer-img{ | |
aspect-ratio: 1; | |
height: 35px; | |
width: 35px; | |
margin-left: 0; | |
} | |
.footer-text{ | |
display: none; | |
} | |
/* sidebar */ | |
/* ================================================= */ | |
.sidebar { | |
transition: all 2s ease-in; | |
position: absolute; | |
width: 90%; | |
z-index: 500; | |
height: 76vh; | |
} | |
/* home */ | |
/* ============================================= */ | |
.home{ | |
width: 100%; | |
} | |
/* detail */ | |
/* ======================================================= */ | |
.detail,.detailUnder{ | |
width: 100%; | |
} | |
.back-poster{ | |
height: 100%; | |
} | |
.upperDetail-main{ | |
flex-direction: column; | |
} | |
.poster{ | |
height: fit-content; | |
} | |
/* search */ | |
/* ============================================== */ | |
#targetedArea{ | |
width: 100%; | |
} | |
/* artist details page */ | |
/* ===================================================== */ | |
.artist{ | |
width: 100%; | |
} | |
.artist-details-upper{ | |
flex-direction: column; | |
row-gap: 10px; | |
align-items: center; | |
width: 93%; | |
} | |
.pageNotFound{ | |
width: 100%; | |
} | |
} | |