-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeyboard.css
More file actions
109 lines (106 loc) · 1.99 KB
/
Copy pathkeyboard.css
File metadata and controls
109 lines (106 loc) · 1.99 KB
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
109
*{
margin: 0;
padding: 0;
}
:root{
--text-color: #fff;
--text-background-color: #aaa;
--keyboard-container-color: #000;
--special-text-color-background-color: #bba1d1;
}
body{
font-family: 'Times New Roman', Times, serif;
}
a{
text-decoration: none;
font-size: 24px;
color: #deb890;
}
a:active{
color: #deb;
}
a:link{
color: #deb890;
}
.keys{
display: flex;
flex-direction: column;
width: 600px;
justify-content: center;
align-items: center;
}
[class^='row']{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.row4{
width: 100%;
gap: 10px;
}
.space-bar{
width: 60%;
background: var(--special-text-color-background-color);
height: 40px;
border-radius: 12px;
cursor: pointer;
}
.del{
color: var(--text-color);
background: var(--special-text-color-background-color);
height: 20px;
padding: 10px;
width: 50px;
text-align: center;
border-radius: 12px;
}
.enter{
color: var(--text-color);
background: var(--special-text-color-background-color);
width: 60px;
padding: 10px;
text-align: center;
border-radius: 12px;
height: 20px;
}
.shift{
color: var(--text-color);
background: var(--special-text-color-background-color);
width: 35px;
height: 20px;
padding: 10px;
border-radius: 12px;
text-align: center;
cursor: pointer;
}
body{
height: 100vh;
display: grid;
place-items: center;
}
#keyboard-container{
background: var(--keyboard-container-color);
width: 700px;
height: 300px;
opacity: 0.9;
display: flex;
justify-content: center;
align-items: center;
border-radius: 5px;
}
.norm-key{
height: 20px;
width: 20px;
color: var(--text-color);
background: var(--text-background-color);
margin: 5px;
padding: 10px;
border-radius: 12px;
text-align: center;
cursor: pointer;
}
.hidden-content{
display: none;
visibility: hidden;
}