-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (51 loc) · 941 Bytes
/
style.css
File metadata and controls
60 lines (51 loc) · 941 Bytes
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
:root{
--colWidth: 50px;
--fullWidth: calc(var(--colWidth) * 4);
}
table {
margin: auto;
text-align: center;
width: var(--fullWidth);
}
#EMOJI-table {
display: none; /*Initially hide the table*/
}
td {
width: var(--colWidth);
/* border: 1px solid #ccc; */
text-align: center;
font-size: 1.5em;
font-family: monospace;
font-weight: bold;
cursor: pointer;
}
.btn-group {
margin: auto;
}
#message {
background: ghostwhite;
font-size: 14px;
padding: 1px;
border: 1px solid lightgray;
border-radius: 5px;
margin: auto;
width: var(--fullWidth);
min-height: 25px;
}
h1 {
font-size: 24px;
text-align: center;
}
#TEXT-alphabet tr:nth-child(6n){
background-color: #f9e971;
}
#EMOJI-alphabet tr:nth-child(6n){
background-color: #f9e971;
}
#gesture {
font-size: 12px;
text-align: center;
}
button {
width: var(--colWidth);
}