-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrema.css
101 lines (87 loc) · 1.61 KB
/
rema.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
* {
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
background: rgb(90, 107, 61);
background: linear-gradient(
90deg,
rgba(90, 107, 61, 1) 35%,
rgba(34, 39, 26, 1) 100%
);
}
.root {
display: flex;
justify-content: space-evenly;
}
.container0 {
margin: 20px;
width: 1em;
border-radius: 20px;
background-color: #474a2c;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
flex: 1;
box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
}
.container {
cursor: pointer;
outline: none;
padding: 15px 10px;
border: grey;
background-color: #474a2c;
}
#remy {
background-color: #474a2c;
color: white;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
padding-bottom: 10px;
}
h2 {
padding-top: 20px;
}
h3 {
margin-bottom: 30px;
}
#audio {
align-self: center;
margin-bottom: 20px;
}
#lyrics {
flex: 1;
background-color: #474a2c;
color: white;
padding: 20px;
margin: 20px;
border-radius: 20px;
font-size: xx-small;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
}
#lyrics p {
margin: 10px 0;
font-family: cursive;
}
#lyrics p.active {
color: #fff;
font-weight: bold;
font-family: cursive;
font-size: 20px;
font-stretch: semi-expanded;
animation: glow 0.5s ease-in-out infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 10px #adff2f, 0 0 20px #adff2f, 0 0 30px #adff2f;
}
to {
text-shadow: 0 0 20px #adff2f, 0 0 30px #adff2f;
}
}