aboutsummaryrefslogtreecommitdiff
path: root/static/app.css
blob: a52ea8ddf3ec01e4482625a108f75381e1445304 (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
.pane {
    margin: auto;
    padding: 4px 10px;
    width: 75%;

    background-color: black;
    color: white;
    opacity: 0.8;

    border-radius: 20px;
    box-shadow: 0px 0px 15px 2px #410f5e;
}

#bg-image {
    position: fixed;

    top: 0;
    left: 0;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(0.2rem);
    -webkit-filter: blur(0.2rem);

    height: 100%;
    width: 100%;

    z-index: -1;
}

#music_player {
    background-color: black;
    color: white;
    padding: 5px;

    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.vert_align {
    display: inline-block;
    vertical-align: middle;
}

.center {
    width: 100%;
    text-align: center;
}

.button_deck {
    width: 100%;
    height: 5%;
}