-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (67 loc) · 1.01 KB
/
style.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
77
78
79
body {
display: flex;
flex-direction: column;
justify-content: center;
}
textarea {
width: 700px;
height: 200px;
padding: 10px;
font-size: 20px;
margin: 20px auto 20px;
}
.keyboard {
width: 761px;
height: 236px;
margin: 0 auto;
background: #57bc90;
border: 2px solid #007849;
border-radius: 6px;
}
.key {
height: 40px;
width: 40px;
margin: 3px;
border-radius: 5px;
border: none;
background: #015249;
color: #fafafa;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
font-weight: 600;
cursor: pointer;
vertical-align: middle;
}
.key:active {
background: #0cdb81;
}
.key:hover {
background: #31dab2;
}
.key-activated {
background: #31dab2;
}
.key-big {
width: 122px;
}
.key-big-caps {
width: 110px;
font-size: 1rem;
}
.key-big-backspace {
width: 110px;
font-size: 1rem;
}
.key-space {
width: 367px;
}
.descr {
font-size: 18px;
margin-top: 20px;
text-align: center;
}
.caps-active {
background: orange;
}