-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (48 loc) · 1000 Bytes
/
style.css
File metadata and controls
51 lines (48 loc) · 1000 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
#calculator{
width: 400px;
max-width: 400px;
margin: 50px auto;
padding: 50px 5px 0 5px;
border-radius: 10px;
background-color: #1c1c1c;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#display{
width: 100%;
height: 80px;
margin-bottom: 20px;
padding: 10px;
font-size: 36px;
color: white;
background-color: #1c1c1c;
border: none;
outline: none;
text-align: right;
box-sizing: border-box;
}
#buttons{
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
padding: 8px;
}
#buttons button{
width: 80px;
height: 80px;
padding: 10px;
font-size: 30px;
border: none;
text-align: center;
border-radius: 40px;
border: none;
background-color: #505050;
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
}
#buttons button:hover{
opacity: 0.7;
}
#buttons button:active{
opacity: 0.9;
}