summaryrefslogtreecommitdiff
path: root/static/css/main.css
blob: 5556f99faa196d0a86b168f972f7a23507c4bad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60

body {
    background-color: #190a0f;
    color: #f3f3f3;
}

a {
    color: #0b9496;
}

h1,h2,h3,h4 {
    color: #e76ad3;
}

button {
    background: #190a0f;
    color: #e76ad3;
    border: 1px solid #e76ad3;
    margin-left: 2px;
    margin-right: 2px;
}

button:hover {
    cursor: pointer;
}

.center {
    text-align: center;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: baseline;
}

.row>div {
    margin: 30px;
}

.track-list-item:hover {
    cursor: pointer;
    background-color: #454545;
}

.now-playing {
    position: sticky;
    top: 2em;
    width: 300px;
}

.now-playing button {
    font-size: 2em;
}

.now-playing-track {
    background-color: #454545;
}