-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (50 loc) · 1.05 KB
/
style.css
File metadata and controls
59 lines (50 loc) · 1.05 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
body {
background-color: #f4f4f4;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.calculator {
background-color: #333;
border-radius: 10px;
padding: 20px;
display: flex;
flex-direction: column;
align-items: flex-end;
width: 300px;
}
input[type="text"] {
width: 280px;
height: 50px;
background-color: #fff;
border: none;
border-radius: 5px;
font-size: 24px;
padding: 5px 10px;
margin-bottom: 10px;
text-align: right;
}
.buttons {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 10px;
}
button {
background-color: #999;
color: #fff;
border: none;
border-radius: 5px;
height: 52px;
width: 52px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #777;
}
button:active {
background-color: #555;
}