-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
91 lines (84 loc) · 1.29 KB
/
main.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
/*palette colors:
sky: #CAEBF2
carbon: #A9A9A9
watermelon: #FF3B3F
neutral: #EFEFEF
*/
body {
background-color: #EFEFEF;
text-align:center;
font-size: 16px;
font-family: 'Raleway', sans-serif;
color: #A9A9A9;
}
.container {
padding-top: 3%;
}
.PASS {
/*visibility: hidden;*/
background-color: #EFEFEF;
border: none;
}
.text {
text-align: center;
font-size: 3em;
/*background-color: #CAEBF2;*/
/*display:inline-block;;*/
/*height:2em;*/
}
span {
background-color: #CAEBF2;
min-width:50px;
min-height: 70px;
display:inline-block;
border: 1px solid #A9A9A9;
}
#piano {
/*padding-top:5%;*/
height: 400px;
width:1000px;
padding-left: 13%;
}
.white-key {
width: 50px;
height: 250;
fill:white;
stroke: #CAEBF2;
stroke-width:2px;
}
.pink-white {
width: 50px;
height: 250;
fill:#FF3B3F;
stroke: #CAEBF2;
stroke-width:2px;
}
.black-key {
width:30;
height:150;
fill:black;
}
.pink-black {
width:30;
height:150;
fill:#FF3B3F;
}
.octaves {
padding-top:5%;
padding-bottom:0px;
}
.octave {
font-size: .4em;
background-color: transparent;
border:none;
color: black;
}
.btn {
background-color: #CAEBF2;
color: black;
font-size: .4em;
}
.btn:hover {
color: #A9A9A9;
font-size:.4em;
}