-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkeymap.css
61 lines (52 loc) · 838 Bytes
/
keymap.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
#keymap {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 60%;
margin: 0 auto;
}
.line {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
}
.key {
min-height: 60px;
width: 100%;
text-align: center;
padding: 10px;
background: #263238;
color: white;
margin: 3px;
border-radius: 5px;
font-size: 0.9rem;
font-weight: bold;
border: none;
}
.key.tab {
min-width: 65px;
}
.key.caps {
min-width: 80px;
}
.key.shift {
min-width: 100px;
}
.key.ctrl {
width: 90px;
}
.key.alt {
width: 90px;
}
.presset {
background: #000;
color: #a55eea;
}
@media only screen and (max-width: 800px) {
#keymap {
width: 100%;
};
}