-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculate.css
More file actions
55 lines (48 loc) · 879 Bytes
/
Copy pathcalculate.css
File metadata and controls
55 lines (48 loc) · 879 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
52
53
54
55
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: #222;
font-family: sans-serif;
}
#calculator {
background: #333;
padding: 16px;
border-radius: 12px;
}
#display {
width: 100%;
box-sizing: border-box;
height: 50px;
font-size: 24px;
text-align: right;
margin-bottom: 10px;
border: none;
border-radius: 6px;
padding: 0 10px;
}
#keys {
display: grid;
grid-template-columns: repeat(4, 60px);
gap: 8px;
}
button {
height: 50px;
font-size: 18px;
border: none;
border-radius: 6px;
background: #555;
color: white;
cursor: pointer;
}
button:hover {
background: #666;
}
.operaton_btn {
background: #e08a2e;
}
.operaton_btn:hover {
background: #f09a3e;
}