-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (66 loc) · 1.26 KB
/
style.css
File metadata and controls
73 lines (66 loc) · 1.26 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
*{
margin: 0;
padding: 0;
}
.container{
width: 100%;
height: 100vh;
background-color: #161A30;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
font-family: monospace;
color: #B6BBC4;
}
.keyboard{
width: 80%;
display: flex;
flex-direction: column;
justify-content: space-evenly;
flex-basis: 300px;
align-items: center;
border: 1px solid #B6BBC4;
box-shadow: 5px 5px #B6BBC4;
border-radius: 5px;
padding: 20px;
}
.row{
width: 100%;
display: flex;
justify-content: space-evenly;
/* border: 1px solid black; */
}
.key{
padding: 1.5rem;
border: 1px solid #B6BBC4;
box-shadow: 2px 2px #B6BBC4;
border-radius: 5px;
}
.Space{
padding: 1.5rem;
padding-left: 20rem;
padding-right: 20rem;
border: 1px solid #B6BBC4;
box-shadow: 2px 2px #B6BBC4;
border-radius: 5px;
}
#textarea{
width: 80%;
border: 0;
border-radius: 10px;
color: #B6BBC4;
border: 1px solid #B6BBC4;
background-color: #161A30;
box-shadow: 5px 5px #B6BBC4;
padding: 10px;
font-size: 1.5rem;
font-weight: bold;
}
.pressed{
opacity: 0.5;
background-color: #B6BBC4;
}
.timer{
font-size: x-large;
}