-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.css
47 lines (42 loc) · 803 Bytes
/
1.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
body {
font-family: Arial, sans-serif;
background-color: #121212;
color: #ffffff;
}
.calculator {
width: 300px;
margin: 100px auto;
padding: 20px;
border: 1px solid #444;
border-radius: 5px;
background-color: #1e1e1e;
}
#result {
width: 100%;
height: 50px;
text-align: right;
margin-bottom: 10px;
font-size: 24px;
background-color: #333;
color: #ffffff;
border: none;
border-radius: 5px;
}
.buttons {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
}
button {
padding: 15px;
font-size: 18px;
cursor: pointer;
background-color: #444;
color: #ffffff;
border: none;
border-radius: 5px;
transition: background-color 0.3s;
}
button:hover {
background-color: #555;
}