-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·111 lines (87 loc) · 1.42 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
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
* {
border: 0;
padding: 0;
box-sizing: border-box;
}
.keyboard {
height: 450px;
width: 95%;
text-align: center;
border: 1px solid black;
padding: 10px 20px;
display: flex;
flex-flow: column;
justify-content: space-around;
border-radius: 35px;
background: #5c636d;
margin: 50px 0;
}
.line {
display: flex;
justify-content: space-between;
}
.key {
height: 65px;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid black;
border-radius: 35px;
color: #ffffff;
}
.small {
height: 30px;
width: 65px;
}
.round {
width: 65px;
}
.oblong {
padding: 0 20px;
}
.oblong.backspace {
width: 120px;
justify-content: flex-end;
}
.oblong.capslock {
width: 120px;
justify-content: flex-start;
}
.oblong.tab {
width: 100px;
justify-content: flex-start;
}
.oblong.backslash {
width: 90px;
}
.oblong.enter {
width: 140px;
justify-content: flex-end;
}
.oblong.l-shift {
width: 160px;
justify-content: flex-start;
}
.oblong.r-shift {
width: 160px;
justify-content: flex-end;
}
.oblong.space {
width: 450px;
}
.cursor-control .top-row {
display: flex;
justify-content: center;
}
.cursor-control .bottom-row {
display: flex;
}
.arrow {
height: 15px;
width: 15px;
filter: invert(100%);
}
.active {
background: #f5f5dc;
color: #333333;
}