-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (44 loc) · 821 Bytes
/
style.css
File metadata and controls
50 lines (44 loc) · 821 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: bisque;
font-family: monospace;
}
#canvas{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 90vh;
text-align: center;
}
#userinput{
font-size: 3em;
border-bottom: 2px solid black;
margin: 15px;
height: 60px;
}
.keyData{
margin: 1rem;
font-size: large;
}
@media (max-width: 500px) {
#canvas{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-size: 0.9em;
height: 60vh;
text-align: center;
}
#userinput{
font-size: 3em;
border-bottom: 2px solid black;
margin: 0.5rem;
height: 50px;
}
}