forked from letterly/letterly.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmykeyboard.css
76 lines (76 loc) · 1.19 KB
/
mykeyboard.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
body{
font-family: 'Roboto';
background-color: #221a0f;
font-weight: 700;
}
#text{
font-family: 'Roboto';
}
.row{
width: 84vw;
margin-left: 7vw;
margin-right: 5vw;
background-color: #fdf6e3;
height: 6vw;
}
.key{
float: left;
height: 5vw;
width: 5vw;
margin: 0.5%;
background-color: #cb4b16;
text-align: center;
color: #fdf6e3;
font-size: 3vw;
}
#Tab, #Backspace{
width: 7vw;
}
#Tab{
background-color: #657b83;
}
#CapsLock, #ShiftLeft, #ShiftRight{
background-color: #b58900;
text-decoration: underline;
}
#CapsLock{
width: 8vw;
}
#Enter{
width: 10vw;
}
#Enter, #Backspace{
background-color: #d33682;
font-style: italic;
}
#ShiftLeft, #ShiftRight{
width: 11.9vw;
}
#text{
background-color: #2aa198;
width: 84vw;
margin-left: 7vw;
margin-right: 5vw;
resize: none;
height: 15vw;
margin-top: 2vw;
border: none;
outline: none;
color: #fdf6e3;
font-size: 3vw;
}
h2{
float: left;
color: #fdf6e3;
margin: 5vw;
font-size: 3vw;
width: 90vw;
}
span{
text-decoration: underline;
color: #dc322f;
}
span:hover{
color: #fdf6e3;
text-decoration: none;
}