-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (46 loc) · 880 Bytes
/
style.css
File metadata and controls
53 lines (46 loc) · 880 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
51
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: darkkhaki;
}
#display {
width: 100%;
font-size: 4rem;
text-align: right;
padding: 2px;
border: none;
background-color: darkslategrey;
color: white;
max-height: 100px;
box-sizing: border-box;
}
.calculator {
background-color: black;
max-width: 400px;
max-height: 90vh;
border-radius: 20px;
overflow: hidden;
box-sizing: border-box;
}
.keys {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
margin: 25px;
}
button {
width: 50px;
height: 50px;
border-radius: 50px;
border: none;
background-color: dimgrey;
color: white;
font-size: 1.5rem;
cursor: pointer;
}
.operator {
background-color: #FF9B17;
}