-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
108 lines (97 loc) · 1.94 KB
/
styles.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
100
101
102
103
104
105
106
107
108
.Banner {
background: lightcoral;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
body {
background-image: url('./gridBackground.jpg');
background-size: cover;
background-position-x: center;
background-color: lightblue;
}
#keyboard {
position: absolute;
align-self: center;
height: 400px;
width: 770px;
border-radius: 5px;
border: 1px solid black;
background-color: rgba(0, 0, 0, .75);
}
#keyboardheader {
cursor: move;
height: 30px;
border-radius: 5px;
background-color: rgba(155, 155, 155, 0.3);
}
#keys-wrapper {
position: absolute;
left: 0;
right: 0;
padding-bottom: 2px;
margin: auto;
bottom: 0%;
border-radius: 5px;
width: fit-content;
}
#key-container {
position: relative;
height: 250px;
}
.whitekey {
background-color: ivory;
width: 50px;
height: 100%;
float: left;
border-right: 1px solid black;
position: relative;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
text-align: center;
color: solid black;
}
.blackkey {
position: relative;
height: 65%;
width: 60%;
z-index: 1;
background: #211e1e;
left: 68%;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
text-align: center;
color: ivory;
}
#hotkey-white {
color: solid black;
position: absolute;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: center;
bottom: 18px;
left: 0;
right: 0;
}
#hotkey-black {
color: ivory;
position: absolute;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: center;
bottom: 18px;
left: 0;
right: 0;
}
#bottom {
color: solid black;
position: absolute;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: center;
bottom: 2px;
left: 0;
right: 0;
}
footer {
text-align: center;
}