mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 05:27:59 +01:00
70 lines
858 B
Text
70 lines
858 B
Text
@import-once "base/bootstrap/bootstrap";
|
|
|
|
.dashboard {
|
|
h1 {
|
|
background: @pfm-purple;
|
|
color: #fff;
|
|
font-size: 10pt;
|
|
padding: 5px;
|
|
margin: 0px;
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1300px) and (min-width: 720px) {
|
|
html .dashboard {
|
|
.recent-tracks {
|
|
width: 50%;
|
|
|
|
.tracks-listing > li:nth-child(1n+15) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.popular-tracks {
|
|
width: 50%;
|
|
float: right;
|
|
}
|
|
|
|
.news {
|
|
width: 50%;
|
|
clear: left;
|
|
}
|
|
}
|
|
}
|
|
|
|
.recent-tracks {
|
|
h1 {
|
|
a {
|
|
color: #fff;
|
|
display: block;
|
|
float: right;
|
|
font-size: 10pt;
|
|
background: darken(@pfm-purple, 20%);
|
|
margin: -5px;
|
|
margin-left: 0px;
|
|
padding: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.dashboard {
|
|
section {
|
|
.box-sizing(border-box);
|
|
|
|
padding: 5px;
|
|
float: left;
|
|
}
|
|
|
|
.recent-tracks {
|
|
width: 37.5%;
|
|
}
|
|
|
|
.popular-tracks {
|
|
width: 37.5%;
|
|
}
|
|
|
|
.news {
|
|
width: 25%;
|
|
}
|
|
}
|