mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
320 lines
5.2 KiB
Text
Vendored
320 lines
5.2 KiB
Text
Vendored
/**
|
|
* Pony.fm - A community for pony fan music.
|
|
* Copyright (C) 2015 Peter Deltchev
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
@import 'base/bootstrap/bootstrap';
|
|
@import 'mixins';
|
|
@import 'variables';
|
|
|
|
html, body {
|
|
}
|
|
|
|
html body {
|
|
height: 100%;
|
|
background: #fff;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
|
|
padding: 0px !important;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
header {
|
|
|
|
|
|
.user-details {
|
|
float: right;
|
|
margin-right: 10px;
|
|
margin-top: 9px;
|
|
|
|
.avatar {
|
|
.img-thumbnail();
|
|
|
|
display: block;
|
|
float: right;
|
|
padding: 2px;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
|
|
&:hover, &:focus {
|
|
background: #ddd;
|
|
color: darken(@pfm-purple, 20%);
|
|
}
|
|
|
|
span {
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
padding: 0px 3px;
|
|
}
|
|
}
|
|
|
|
.dropdown-menu {
|
|
left: auto !important;
|
|
right: 0px;
|
|
}
|
|
|
|
.name {
|
|
float: left;
|
|
height: 44px;
|
|
line-height: 44px;
|
|
padding-right: 10px;
|
|
font-weight: bold;
|
|
font-size: 12pt;
|
|
}
|
|
|
|
img {
|
|
height: 40px;
|
|
width: 40px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.now-playing {
|
|
margin-left: @pfm-sidebar-size;
|
|
height: 64px;
|
|
background: #fff;
|
|
position: relative;
|
|
z-index: 500;
|
|
border-bottom: 1px solid #bcbcbc;
|
|
}
|
|
|
|
.sidebar {
|
|
> a {
|
|
display: block;
|
|
float: left;
|
|
width: (@pfm-sidebar-size);
|
|
height: 64px;
|
|
line-height: 42px;
|
|
background: #84528A;
|
|
color: #fff;
|
|
font-size: 24pt;
|
|
font-weight: lighter;
|
|
position: relative;
|
|
z-index: 600;
|
|
font-family: 'Josefin Sans', sans-serif;
|
|
position: relative;
|
|
|
|
&:hover {
|
|
background: darken(#84528A, 25%);
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
img.logo {
|
|
padding-left: 6px;
|
|
width: 100%;
|
|
max-width: 94%;
|
|
padding-top: 13px;
|
|
}
|
|
}
|
|
|
|
background: #515151;
|
|
width: @pfm-sidebar-size;
|
|
height: 100%;
|
|
list-style: none;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
font-size: 10pt;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
|
|
li {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
line-height: normal;
|
|
|
|
&.selected {
|
|
background: #fff;
|
|
|
|
> a, > a:hover {
|
|
cursor: default;
|
|
color: #000;
|
|
}
|
|
}
|
|
|
|
&.x-attribution {
|
|
position: absolute;
|
|
bottom: 0;
|
|
max-width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
text-align: right;
|
|
|
|
img {
|
|
width: 100%;
|
|
}
|
|
|
|
a {
|
|
padding: 10px;
|
|
}
|
|
|
|
span {
|
|
font-size: 90%;
|
|
text-transform: lowercase;
|
|
margin: 7px 0;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
padding: 10px 25px;
|
|
padding-right: 10px;
|
|
margin: 0px;
|
|
font-size: 10pt;
|
|
color: #eee;
|
|
background: darken(#515151, 5%);
|
|
line-height: normal;
|
|
|
|
a {
|
|
display: block;
|
|
float: right;
|
|
width: 20px;
|
|
text-align: center;
|
|
color: #fff;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
color: #000;
|
|
}
|
|
}
|
|
}
|
|
|
|
.dropdown-menu a {
|
|
color: #000;
|
|
}
|
|
|
|
&:hover > a.dropdown-toggle {
|
|
display: block;
|
|
}
|
|
|
|
> a.dropdown-toggle {
|
|
float: right;
|
|
padding: 10px 0px;
|
|
display: none;
|
|
}
|
|
|
|
> a {
|
|
display: block;
|
|
padding: 10px 25px;
|
|
padding-right: 0px;
|
|
overflow: hidden;
|
|
color: fadeout(#fff, 20%);
|
|
|
|
&:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
> i {
|
|
display: block;
|
|
float: right;
|
|
width: 20px;
|
|
text-align: center;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
li.none {
|
|
span {
|
|
display: block;
|
|
padding: 5px 25px;
|
|
color: #555;
|
|
font-style: italic;
|
|
}
|
|
}
|
|
}
|
|
|
|
.site-content {
|
|
overflow: hidden;
|
|
margin-left: @pfm-sidebar-size;
|
|
background: #fff;
|
|
height: 100%;
|
|
z-index: 100;
|
|
}
|
|
|
|
.file-over-notice {
|
|
display: none;
|
|
}
|
|
|
|
.chart-container {
|
|
width: 50%;
|
|
}
|
|
|
|
.chart-btn-container {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.mobile-header {
|
|
display: none;
|
|
}
|
|
|
|
.burger-wrapper {
|
|
top:20px;
|
|
left: 20px;
|
|
position: absolute;
|
|
}
|
|
|
|
.burger {
|
|
width: 25px;
|
|
height: 20px;
|
|
top: 20px;
|
|
left: 20px;
|
|
}
|
|
|
|
.bun-top,.meat,.bun-bottom {
|
|
position: absolute;
|
|
display: block;
|
|
border-radius: 4px;
|
|
background: white;
|
|
width: 25px;
|
|
height: 2px;
|
|
}
|
|
|
|
.bun-top {
|
|
top: 0;
|
|
}
|
|
|
|
.meat {
|
|
top: 9px;
|
|
}
|
|
|
|
.bun-bottom {
|
|
bottom: 0;
|
|
}
|
|
|
|
.playlist-form .modal-footer {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.classifier {
|
|
.classifier-track-list {
|
|
float: left;
|
|
width: 50%;
|
|
|
|
ul {
|
|
width: 100% !important;
|
|
}
|
|
}
|
|
|
|
.classifier-track-editor {
|
|
float: right;
|
|
width: 50%;
|
|
}
|
|
}
|