-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (59 loc) · 1.25 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
html {
background: #FFFFFF;
color: #CC0066;
font-family: Courier, sans-serif;
font-size: 18px;
}
h1, a, a:visited, pre {
color: #CC0066;
}
.keyboard {
width: 600px;
height: 300px;
}
.Key{
display :inline-block;
border-radius: 3px;
}
.WhiteKey{
background-color: #FFFFFF;
border-style: solid;
border-width:1px;
border-color: #000000;
border-right-width: 0;
width: 47px;
height:218px;
border-radius:"4px 4px 5px 5px"
}
.WhiteKeyActive{
background-color: hsl(330, 100%, 40%);
border-style: solid;
border-width:1px;
border-color:#CC0066;
border-right-width: 0;
width: 47px;
height:218px;
border-radius:"4px 4px 5px 5px"
}
.BlackKey{
background-color: black;
border-style: solid;
border-width:1px;
border-color: #000000;
position: absolute;
border-right-width: 1px;
width: 23px;
height:147px;
border-radius:"4px 4px 5px 5px"
}
.BlackKeyActive{
background-color: #CC0066;
border-style: solid;
border-width:1px;
border-color:#CC0066;
position: absolute;
border-right-width: 1px;
width: 23px;
height:147px;
border-radius:"4px 4px 5px 5px"
}