forked from mgile/Cast-Player-Sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
player.css
56 lines (47 loc) · 781 Bytes
/
player.css
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
body {
background-color: #000;
}
.fbox-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.fs {
width: 100%;
height: 100vh;
}
.hidden {
display: none;
}
.fade-out{
visibility: 0;
}
#splash-screen{
transition: all 0.3s ease-in;
}
#splash-screen img{
width: 50%;
}
#status-cast{
color: #999;
margin-top: 20px;
font-size: 20px;
}
#media-info{
width: 100%;
height: 100%;
position: absolute;
background-color: #444;
}
#media-art{
background-size: contain;
background-position: center;
background-repeat: no-repeat;
align-self: flex-end;
height: 143px;
margin-right: 32px;
min-width: 96px;
max-width: 266px;
width: 100%;
}