Almost finished main search UI

This commit is contained in:
RemixDev
2020-04-08 23:52:08 +02:00
parent 42264d0353
commit 56b9c511ea
2 changed files with 46 additions and 12 deletions

View File

@@ -41,10 +41,11 @@ div#middle_section {
background-color: #eeeeee;
}
#content{
background-color: #eeeeee;
width: 100%;
background-color: #ffffff;
width: calc(100% - 10px);
height: calc(100% - 48px);
overflow-y: scroll;
overflow-x: hidden;
padding-left: 10px
}
#content::-webkit-scrollbar {
@@ -52,7 +53,7 @@ div#middle_section {
}
#content::-webkit-scrollbar-track {
background: #eeeeee;
background: #ffffff;
}
#content::-webkit-scrollbar-thumb {
@@ -96,7 +97,6 @@ div#middle_section {
}
.top_result > img {
display: inline-block;
border-radius: 5px;
width: 156px;
height: 156px;
}
@@ -104,7 +104,7 @@ div#middle_section {
display: inline-block;
padding-left: 24px;
}
.top_result > .info_box > p {
.top_result > .info_box > p, .release > p {
margin: 0px;
margin-bottom: 4px;
}
@@ -112,6 +112,17 @@ div#middle_section {
opacity: 0.75;
}
.release_grid{
display: flex;
align-items:flex-start;
}
.release{
display: inline-block;
width: 156px;
margin-right: 24px;
}
/* Download tab section */
div#download_tab_container{
background-color: #222324;
@@ -141,6 +152,9 @@ div#download_tab{
/* Global stuff */
img.rounded {
border-radius: 5px;
}
img.circle {
border-radius: 50%;
}
span.tag {
@@ -151,3 +165,7 @@ span.tag {
font-size: 10px;
padding: 3px 6px;
}
.tracks_table{
width: 100%;
}