-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
48 lines (47 loc) · 879 Bytes
/
index.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
.app {
margin: 10px auto;
width: 30%;
text-align: center;
background-color: black;
border-radius: 15px;
color: white;
padding: 1%;
}
.buttons {
margin: 10px auto;
display: grid;
grid-template-columns: auto auto auto auto;
width: 50%;
}
.output-screen {
border: 1px solid gray;
margin: 15px auto;
width:50%;
aspect-ratio: 5/1;
background-color: grey;
color:white;
display: flex;
justify-content: end;
align-items: center;
font-size: xx-large;
overflow-y: auto;
padding: 3px;
}
.key {
border-radius: 50%;
border: 1px solid white;
width: 50px;
height: 50px;
margin: 1px 1px 1px 1px;
background-color: orange;
font-size: large;
}
.key-zero {
border-radius: 15px;
grid-column-start: 1;
grid-column-end: 3;
width: 95%
}
.hide {
display: none;
}