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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
body {
background: url("img/wp2.png") ;
text-align: center;
color: beige;
padding-left: 5vw;
padding-right: 5vw;
}
a {
color: rgb(245, 82, 82);
}
abbr{
cursor: help;
}
.audio-players{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin: 2em auto;
}
.audio {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
min-width: 20vw;
width: 27%;
padding: 20px;
border-radius: 10px;
background: linear-gradient(45deg, #dbc562aa, #92878dbb);
}
.audio,
.date-cont{
box-shadow: #111 10px 20px 15px;
transition-property: box-shadow, transform;
transition-duration: .5s;
transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.date-cont:hover,
.audio:hover {
box-shadow: #111 15px 25px 30px;
transform: scale(100.5%);
}
.audio img {
background-color: #534e5588;
box-shadow: #111 1px 1px 8px;
border-radius: 15px;
width: 100%;
}
audio {
flex-wrap: nowrap;
width: 100%;
border-radius: 10px;
background: linear-gradient(217deg, rgba(255,0,0,.8), rgba(255,0,0,0) 70.71%),
linear-gradient(127deg, rgba(0,255,0,.8), rgba(0,255,0,0) 70.71%),
linear-gradient(336deg, rgba(0,0,255,.8), rgba(0,0,255,0) 70.71%);
box-shadow: #111 2px 2px 10px;
}
.date{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.date hr{
transform: rotate(90deg);
width: 2em;
height: 0;
border: 1px solid white;
}
.date div{
display: flex;
flex-direction: row;
align-items: center;
}
.date-cont{
padding-left: 10px;
padding-right: 10px;
margin-bottom: 10px;
margin-left: 10%;
margin-right: 10%;
border-radius: 10px;
background: linear-gradient(45deg, #dbc562aa, #92878dbb);
color: white;
display: flex;
flex-direction: column;
}
.date-cont img{
display: none;
max-height: 50vh;
margin: auto;
margin-bottom: 20px;
}
.date-cont.toggle img {
display: block;
}
.date-desc {
text-align: left;
}
|