-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
122 lines (109 loc) · 2.14 KB
/
Copy pathindex.css
File metadata and controls
122 lines (109 loc) · 2.14 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
110
111
112
113
114
115
116
117
118
119
120
121
122
body{
background: black;
color: rgb(151, 250, 2);
}
h1, p{
text-align: center;
}
.keyboard {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
padding: 50px 0;
background: rgb(1, 37, 3);
box-shadow: 0 0 50px rgb(3, 104, 3);
user-select: none;
transition: bottom 0.4s;
}
.keyboard--hidden {
bottom: -100%;
}
.keyboard__keys {
text-align: center;
}
.keyboard__key {
height: 46px;
width: 6%;
max-width: 90px;
margin: 3px;
border-radius: 4px;
border: none;
background: rgba(130, 131, 130, 0.808);
color: rgb(245, 245, 245);
font-size: 1.05rem;
outline: none;
display: inline-flex;
align-items: center;
justify-content: center;
vertical-align: top;
padding: 0;
-webkit-tap-highlight-color: transparent;
position: relative;
}
.keyboard__key:active {
background: rgba(70, 75, 70, 0.808);
}
.keyboard__key--wide {
width: 12%;
}
.keyboard__key--extra-wide {
width: 36%;
max-width: 500px;
}
.keyboard__key--activatable::after {
content: '';
top: 10px;
right: 10px;
position: absolute;
width: 8px;
height: 8px;
background: rgba(0, 0, 0, 0.4);
border-radius: 50%;
}
.keyboard__key--active::after {
background: #07f507;
}
.keyboard__key--dark {
background: rgba(5, 0, 0, 0.25);
}
textarea{
height: 125px;
font-size: 15pt;
position: absolute;
top: 120px;
right: 125px;
width: 800px;
color: #07f507;
background-color: black;
}
.onclick{
float: right;
background-color: black;
color:white;
border: 1px solid white;
padding: 15px;
margin-top: 20px;
border-radius: 12px;
}
.onclick:active{
background-color: #07f507;
color: black;
}
.save{
float: right;
background-color: black;
color:white;
border: 1px solid white;
padding: 15px;
margin-left: 90%;
border-radius: 12px;
}
.save:active{
background-color: #07f507;
color: black;
}
ul li{
list-style-type:decimal;
margin: 10px;
}