-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (81 loc) · 1.57 KB
/
style.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
html, body {
display: flex;
align-items: center;
justify-content: center;
padding: 0;
margin: 0;
height: 100%;
width: 100%;
background-image: -webkit-radial-gradient(circle, #eeeeee, #bdc3c7 80%);
background-image: radial-gradient(circle, #eeeeee, #bdc3c7 80%);
font-family: 'Open Sans',sans-serif;
}
/***
* ng-sc-track
***/
ng-sc-track {
width: 320px;
height: 320px;
display: inline-block;
position: relative;
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}
ng-sc-track a, ng-sc-track a:hover, ng-sc-track a:link, ng-sc-track a:active {
color: #fff;
text-decoration: none;
}
ng-sc-track p, ng-sc-track h1 {
padding: 0;
margin: 0;
}
ng-sc-track h1 {
font-size: 2em;
font-weight: 100;
}
ng-sc-track p {
font-size: 0.75em;
}
ng-sc-track .album-art {
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
}
ng-sc-track .wave {
position: absolute;
top: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
opacity: 0.0;
}
ng-sc-track .details {
width: 100%;
height: 64px;
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
}
ng-sc-track .track-info {
float: left;
padding-left: 4px;
}
ng-sc-track .play {
float: right;
width: 64px;
height: 64px;
line-height: 64px;
text-align: center;
font-size: 24px;
cursor: pointer;
background: #2cde50;
transition: all 0.3s ease 0s;
}
ng-sc-track .play:hover {
background: #6be784;
}
ng-sc-track .play:active {
background: #27c748;
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5) inset;
}