-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
53 lines (53 loc) · 906 Bytes
/
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
body {
font-family: Arial, sans-serif;
margin: 0;
}
.keyboard {
display: grid;
grid-template-columns: repeat(21, 1fr);
gap: 5px;
background-color: #f0f0f0;
padding: 10px;
border-radius: 5px;
}
.key {
display: flex;
justify-content: center;
align-items: center;
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: 3px;
padding: 5px;
cursor: pointer;
}
.key.double {
grid-column: span 2;
}
.key.triple {
grid-column: span 3;
}
.key.space {
grid-column: span 8;
}
.pressed {
background-color: #b3e6ff;
}
#Status {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 10px;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
footer a {
color: #fff;
text-decoration: none;
}