-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (66 loc) · 1.32 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
/* --------------------------- */
/* -------- CSS Sheet -------- */
/* --------------------------- */
body {
background-image: radial-gradient(rgb(40, 6, 2), black);
color:rgb(234, 230, 224);
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
header {
margin-left: 4%;
}
.piano {
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
}
.white {
width: 9%;
min-width: 40px;
height: 70%;
background-color: white;
border: 1px solid #ccc;
border-radius: 4px;
}
.black {
width: 8%;
height: 42%;
margin-left: -4%;
margin-right: -4%;
z-index: 2;
background-color: black;
border-radius: 2px;
}
.white.active {
background-color: white;
opacity: 1;
animation-name: fadeInOpacity;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-duration: 2s;
}
@keyframes fadeInOpacity {
0% {
background-color: rgb(75, 32, 140);
opacity: 0.8;
} 100% {
opacity: 1;
}
}
.black.active {
background-color: rgb(26, 24, 24);
opacity: 1;
animation-name: blackFadeInOpacity;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-duration: 2s;
}
@keyframes blackFadeInOpacity {
0% {
background-color:rgb(20, 44, 120);
opacity: 0.85;
} 100% {
opacity: 1;
}
}