-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (47 loc) · 967 Bytes
/
style.css
File metadata and controls
54 lines (47 loc) · 967 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #7b009d;
}
.calculator {
width: 300px;
margin: 50px auto;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.display {
height: 50px;
background-color: #f0f0f0;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
font-size: 24px;
text-align: right;
}
.calculator-buttons {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
padding: 20px;
}
button {
padding: 20px;
font-size: 18px;
border: none;
border-radius: 5px;
background-color: #7b009d;
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #5a0074;
}
button:active {
background-color: #3a0050;
}