1/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
2
3/**
4 *
5 * LICENSE: GNU Affero General Public License, version 3 (AGPL-3.0-or-later)
6 * Copyright 2001 - 2020 Ampache.org
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20 *
21 */
22
23body {
24    background-color: rgba(0, 0, 0, 0);
25    margin: 0;
26    font-family: Arial, sans-serif;
27    font-weight: normal;
28    font-size: 16px;
29    line-height: 1.5em;
30    overflow: hidden;
31}
32
33a {
34    color: #ff9d00;
35    text-decoration: none;
36}
37
38label {
39    color: #fff;
40}
41
42.np_row {
43    background-color: rgba(50, 50, 50, 0.7);
44    padding: 8px;
45    display: flex;
46    flex-direction: row;
47}
48
49.box-top,
50.box-title,
51.box-bottom,
52.cel_username,
53.cel_tags,
54.similars,
55.cel_ratings,
56.cel_userflag {
57    display: none;
58}
59
60#np_group_2 {
61    display: flex;
62    justify-content: center;
63    flex-direction: column;
64    padding-left: 10px;
65}
66
67#np_group_3,
68.cel_song {
69    order: 1;
70}
71
72#np_group_2,
73.cel_artist {
74    order: 2;
75}
76
77.cel_album {
78    order: 3;
79}
80
81.item_art {
82    box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
83}
84